blob: 485090f063047fc571b263a917e35e63ba3ef647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// **********************************************************************
//
// Copyright (c) 2002
// Mutable Realms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
package Ice;
public interface PluginFactory
{
Plugin create(Communicator communicator, String name, String[] args);
}
|