org.apache.ws.jaxme.js

Class AbstractJavaMethod

public abstract class AbstractJavaMethod extends ConditionalIndentationJavaSourceObject

Base class of methods, constructors, and the like.
Constructor Summary
protected AbstractJavaMethod(String pName, JavaQName pType, JavaSource.Protection pProtection)
Method Summary
ParameteraddParam(Class p, String v)

Adds a parameter that this method takes.

ParameteraddParam(JavaQName pType, String pName)

Adds a parameter that this method takes.

ParameteraddParam(Parameter pParam)

Adds a parameter that this method takes.

voidaddThrows(JavaQName e)

Adds an exception to this methods list of exceptions.

voidaddThrows(Class e)

Adds an exception to this methods list of exceptions.

voidclearParams()

Clears the list of parameters.

voidclearThrows()

Clears the list of thrown exceptions.

JavaQName[]getExceptions()

Returns the list of exceptions thrown by this method.

String[]getParamNames()

Returns a list of the parameter names that this method takes.

Parameter[]getParams()

Returns the list of parameters that this method takes.

JavaQName[]getParamTypes()

Returns an array of the parameter types that this method takes.

booleanisThrowing(JavaQName e)

Returns whether the method is throwing the given exception.

booleanisThrowing(Class e)

Returns whether the method is throwing the given exception.

voidremoveThrows(JavaQName exc)

Removes an exception from this methods list of exceptions, if it is declared to be thrown.

voidremoveThrows(Class exc)

Removes an exception from this methods list of exceptions, if it is declared to be thrown.

Constructor Detail

AbstractJavaMethod

protected AbstractJavaMethod(String pName, JavaQName pType, JavaSource.Protection pProtection)

Method Detail

addParam

public Parameter addParam(Class p, String v)

Adds a parameter that this method takes.

Returns: An object to use for referencing the parameter inside the method.

See Also: AbstractJavaMethod

addParam

public Parameter addParam(JavaQName pType, String pName)

Adds a parameter that this method takes.

Returns: An object to use for referencing the parameter inside the method.

See Also: AbstractJavaMethod

addParam

public Parameter addParam(Parameter pParam)

Adds a parameter that this method takes.

Returns: An object to use for referencing the parameter inside the method.

See Also: AbstractJavaMethod

addThrows

public void addThrows(JavaQName e)

Adds an exception to this methods list of exceptions.

See Also: AbstractJavaMethod

addThrows

public void addThrows(Class e)

Adds an exception to this methods list of exceptions.

See Also: AbstractJavaMethod

clearParams

public void clearParams()

Clears the list of parameters.

clearThrows

public void clearThrows()

Clears the list of thrown exceptions.

getExceptions

public JavaQName[] getExceptions()

Returns the list of exceptions thrown by this method.

See Also: addThrows

getParamNames

public String[] getParamNames()

Returns a list of the parameter names that this method takes. Any element in the list is an instance of {@link java.lang.String}.

Returns: the list of parameter names

See Also: AbstractJavaMethod

getParams

public Parameter[] getParams()

Returns the list of parameters that this method takes. Any element in the list is an instance of {@link Parameter}.

Returns: the list of parameters

See Also: AbstractJavaMethod

getParamTypes

public JavaQName[] getParamTypes()

Returns an array of the parameter types that this method takes. This array can be used for JavaSource.getMethod() or JavaSource.getConstructor().

Returns: the list of parameter types

See Also: AbstractJavaMethod

isThrowing

public boolean isThrowing(JavaQName e)

Returns whether the method is throwing the given exception. Note that this method doesn't care for inheritance. For example, if the method declares to be throwing an {@link java.net.MalformedURLException}, then the value isThrowing(java.io.IOException.class) is still false.

isThrowing

public boolean isThrowing(Class e)

Returns whether the method is throwing the given exception. Note that this method doesn't care for inheritance. For example, if the method declares to be throwing an {@link java.net.MalformedURLException}, then the value isThrowing(java.io.IOException.class) is still false.

removeThrows

public void removeThrows(JavaQName exc)

Removes an exception from this methods list of exceptions, if it is declared to be thrown.

Parameters: exc the exception to be removed

removeThrows

public void removeThrows(Class exc)

Removes an exception from this methods list of exceptions, if it is declared to be thrown.

Parameters: exc the exception to be removed