Skip to content

Commit

Permalink
Merge pull request #69 from qtc-de/develop
Browse files Browse the repository at this point in the history
Fix javadoc
  • Loading branch information
qtc-de authored Jun 26, 2024
2 parents 69d50e9 + feb3cc3 commit e70b5ef
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
1 change: 1 addition & 0 deletions src/eu/tneitzel/rmg/networking/RMIEndpoint.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public class RMIEndpoint
/** remote host of the endpoint */
public String host;

/** client socket factory to use for connections */
protected RMIClientSocketFactory csf;

/**
Expand Down
12 changes: 1 addition & 11 deletions src/eu/tneitzel/rmg/networking/RMIRegistryEndpoint.java
Original file line number Diff line number Diff line change
Expand Up @@ -322,11 +322,6 @@ public Remote lookupWithRetries(String boundName, int maxRetries)
*
* @param boundName name to lookup within the registry
* @return RemoteObjectWrapper for the remote object
* @throws IllegalArgumentException if reflective access fails
* @throws IllegalAccessException if reflective access fails
* @throws NoSuchFieldException if reflective access fails
* @throws SecurityException if reflective access fails
* @throws UnmarshalException if unmarshalling the return value fails
*/
public RemoteObjectWrapper lookupWrapper(String boundName)
{
Expand All @@ -348,13 +343,8 @@ public RemoteObjectWrapper lookupWrapper(String boundName)
/**
* Same as the lookup action, but returns an array of RemoteObjectWrapper.
*
* @param boundName name to lookup within the registry
* @param boundNames names to lookup within the registry
* @return RemoteObjectWrapper for the remote object
* @throws IllegalArgumentException if reflective access fails
* @throws IllegalAccessException if reflective access fails
* @throws NoSuchFieldException if reflective access fails
* @throws SecurityException if reflective access fails
* @throws UnmarshalException if unmarshalling the return value fails
*/
public RemoteObjectWrapper[] lookupWrappers(String[] boundNames)
{
Expand Down
2 changes: 2 additions & 0 deletions src/eu/tneitzel/rmg/operations/OperationGroup.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
*/
public enum OperationGroup implements IActionGroup
{
/** Native rmg operations */
NATIVE("actions:"),
/** Operations added by plugins */
PLUGIN("plugin actions:");

private final String name;
Expand Down
2 changes: 2 additions & 0 deletions src/eu/tneitzel/rmg/operations/RemoteObjectClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ public RemoteObjectClient(UnicastWrapper remoteObject)
/**
* Create a proxy for the RemoteObjectClient.
*
* @param <T> interface implemented by the proxy
* @param intf the interface class
* @return proxy implementing the specified interface
*/
@SuppressWarnings("unchecked")
Expand Down
2 changes: 2 additions & 0 deletions src/eu/tneitzel/rmg/plugin/PluginSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
public class PluginSystem
{
private static String manifestAttribute = "RmgPluginClass";

/** The class loader that was used to load the plugin */
public static URLClassLoader pluginLoader = null;

private static IActionProvider actionProvider = null;
Expand Down

0 comments on commit e70b5ef

Please sign in to comment.