Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix javadoc #69

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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