| java.lang.Object org.w3c.jigsaw.admin.PlainRemoteResource
identifier | protected String identifier(Code) | | The name of that resource (ie it's identifier attribute).
|
isDirectoryResource | protected boolean isDirectoryResource(Code) | | Is that resource a directory resource ?
|
iscontainer | protected boolean iscontainer(Code) | | Is that resource a container resource ?
|
isframed | protected boolean isframed(Code) | | Is that resource a framed resource ?
|
isindexerscatalog | protected boolean isindexerscatalog(Code) | | Is that resource a indexers catalog ?
|
parent | protected URL parent(Code) | | The name of the parent of that resource, as an URL.
|
url | protected URL url(Code) | | The admin URL for the wrapped resource.
|
values | protected Object values(Code) | | The remote resource attribute values.
|
createRemoteFrames | protected void createRemoteFrames()(Code) | | |
getAttributes | public synchronized AttributeDescription[] getAttributes() throws RemoteAccessException(Code) | | Get the target resource list of attributes.
This method returns the target resource attributes description. The
resulting array contains instances of the Attribute class, one item
per described attributes.
Even though this returns all the attribute resources, only the
ones that are advertized as being editable can be set through this
interface.
An array of Attribute. exception: RemoteAccessException - If somenetwork failure occured. |
getClassHierarchy | public String[] getClassHierarchy() throws RemoteAccessException(Code) | | Get the target resource class hierarchy.
This method will return the class hierarchy as an array of String. The
first string in the array is the name of the resource class itself, the
last string will always be java.lang.Object.
A String array givimg the target resource's class description. exception: RemoteAccessException - If somenetwork failure occured. |
getFrames | public RemoteResource[] getFrames() throws RemoteAccessException(Code) | | Get the frames attached to that resource.
Each frame is itself a resource, so it is returned as an instance of
a remote resource.
A (posssibly null) array of frames attachedto that resource. exception: RemoteAccessException - If somenetwork failure occured. |
isFrame | public boolean isFrame()(Code) | | |
isFrameURL | protected boolean isFrameURL(URL furl)(Code) | | |
isFramed | public boolean isFramed() throws RemoteAccessException(Code) | | Is this resource a framed resource ?
A boolean, true if the resource is framedand it currently has some frames attached, falseotherwise. exception: RemoteAccessException - If somenetwork failure occured. |
registerFrame | public RemoteResource registerFrame(String id, String classname) throws RemoteAccessException(Code) | | Attach a new frame to that resource.
Parameters: identifier - The name for this frame (if any). Parameters: clsname - The name of the frame's class. A remote handle to the (remotely) created frame instance. exception: RemoteAccessException - If somenetwork failure occured. |
setValues | public void setValues(String names, Object values) throws RemoteAccessException(Code) | | Set a set of attribute values in one shot.
This method guarantees that either all setting is done, or none of
them are.
Parameters: attrs - The (ordered) list of attribute to set, encoded as theirnames. Parameters: values - The (ordered) list of values, for each of the aboveattributes. exception: RemoteAccessException - If somenetwork failure occured. |
updateURL | public void updateURL(URL parentURL)(Code) | | |
|
|