|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.openide.filesystems.FileSystem | +--org.openide.filesystems.AbstractFileSystem | +--org.openide.filesystems.XMLFileSystem
XML-based file system.
Description of format of XML file (which can be parsed by XMLFileSystem) ================================================================== Allowed Elements: filesystem,file,folder,attr Mandatory attributes: -for filesystem version=... (e.g. "1.0") -for file,folder,attr name=.... (e.g.: <folder name="Config">) -for attr is mandatory one of bytevalue,shortvalue,intvalue,longvalue,floatvalue,doublevalue,boolvalue,charvalue,stringvalue,methodvalue,serialvalue,urlvalue Allowed atributes: -for file: url=.... (e.g.: <file name="sample.xml" url="file:/c:\sample.xml">) -for folder,filesystem nothing allowed Note: file can contain content e.g.: < file name="sample.java"> < ![CDATA[ package org.sample; import java.io; ]]> < /file> This class implements virtual FileSystem. It is special case of FileSystem in XML format. Description of this format best ilustrate DTD file that is showed in next lines: < !ELEMENT filesystem (file | folder)*> < !ATTLIST filesystem version CDATA #REQUIRED> //version not checkked yet < !ELEMENT folder (file |folder | attr)*> < !ATTLIST folder name CDATA #REQUIRED> //name of folder < !ELEMENT file (#PCDATA | attr)*> < !ATTLIST file name CDATA #REQUIRED> //name of file < !ATTLIST file url CDATA #IMPLIED> //content of the file can be find at url < !ELEMENT attr EMPTY> < !ATTLIST attr name CDATA #REQUIRED> //name of attribute < !ATTLIST attr bytevalue CDATA #IMPLIED>//the rest - types of attributes < !ATTLIST attr shortvalue CDATA #IMPLIED> < !ATTLIST attr intvalue CDATA #IMPLIED> < !ATTLIST attribute longvalue CDATA #IMPLIED> < !ATTLIST attr floatvalue CDATA #IMPLIED> < !ATTLIST attr doublevalue CDATA #IMPLIED> < !ATTLIST attr boolvalue CDATA #IMPLIED> < !ATTLIST attr charvalue CDATA #IMPLIED> < !ATTLIST attr stringvalue CDATA #IMPLIED> < !ATTLIST attr methodvalue CDATA #IMPLIED> < !ATTLIST attr serialvalue CDATA #IMPLIED> < !ATTLIST attr urlvalue CDATA #IMPLIED>
Inner Class Summary | |
static class |
XMLFileSystem.Impl
Implementation of all interfaces List, Change, Info and Attr that delegates to JarFileSystem |
Inner classes inherited from class org.openide.filesystems.AbstractFileSystem |
AbstractFileSystem.Attr, AbstractFileSystem.Change, AbstractFileSystem.Info, AbstractFileSystem.List, AbstractFileSystem.Transfer |
Inner classes inherited from class org.openide.filesystems.FileSystem |
FileSystem.AtomicAction, FileSystem.Environment, FileSystem.Status |
Fields inherited from class org.openide.filesystems.AbstractFileSystem |
attr, change, info, list, transfer |
Fields inherited from class org.openide.filesystems.FileSystem |
PROP_HIDDEN, PROP_READ_ONLY, PROP_ROOT, PROP_SYSTEM_NAME, PROP_VALID |
Constructor Summary | |
XMLFileSystem()
Constructor. |
|
XMLFileSystem(FileSystemCapability cap)
Constructor. |
|
XMLFileSystem(String uri)
Constructor. |
|
XMLFileSystem(URL url)
Constructor. |
Method Summary | |
void |
addNotify()
Notifies this file system that it has been added to the repository. |
protected Reference |
createReference(FileObject fo)
Creates Reference. |
String |
getDisplayName()
Provides a name for the system that can be presented to the user. |
URL |
getXmlUrl()
Getter of url field. |
URL[] |
getXmlUrls()
Deprecated. experimental method. Nobody should rely on this method yet. |
boolean |
isReadOnly()
Test if the filesystem is read-only or not. |
void |
removeNotify()
Notifies this file system that it has been removed from the repository. |
void |
setXmlUrl(URL url)
Setter of url field. |
void |
setXmlUrl(URL url,
boolean validate)
Setter of url field. |
void |
setXmlUrls(URL[] urls)
Deprecated. experimental method. Nobody should rely on this method yet. |
Methods inherited from class org.openide.filesystems.AbstractFileSystem |
checkVirtual, existingFileObjects, find, findReference, findResource, getActions, getRefreshTime, getRoot, markImportant, refreshResource, refreshRoot, setRefreshTime |
Methods inherited from class org.openide.filesystems.FileSystem |
addFileStatusListener, addPropertyChangeListener, addVetoableChangeListener, fireFileStatusChanged, firePropertyChange, fireVetoableChange, getActions, getCapability, getStatus, getSystemName, isDefault, isHidden, isPersistent, isValid, prepareEnvironment, removeFileStatusListener, removePropertyChangeListener, removeVetoableChangeListener, runAtomicAction, setCapability, setHidden, setSystemName, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public XMLFileSystem()
public XMLFileSystem(String uri) throws SAXException
uri
- to file with definition of XMLFileSystemSAXException
- if parsing is not succesfulpublic XMLFileSystem(URL url) throws SAXException
url
- to definition of XMLFileSystemSAXException
- if parsing not succesfulpublic XMLFileSystem(FileSystemCapability cap)
cap
- capabilities for this file systemMethod Detail |
public URL getXmlUrl()
public void setXmlUrl(URL url) throws IOException, PropertyVetoException
url
- with definition of XMLFileSystemPropertyVetoException
- if the change is not allowed by a listenerIOException
- if the file is not validpublic void setXmlUrl(URL url, boolean validate) throws IOException, PropertyVetoException
url
- with definition of XMLFileSystemvalidate
- sets validating of SAXParserPropertyVetoException
- if the change is not allowed by a listenerIOException
- if the file is not validpublic URL[] getXmlUrls()
public void setXmlUrls(URL[] urls) throws IOException, PropertyVetoException
urls
- array of definitions (in xml form) of XMLFileSystemIOException
- if the file is not validPropertyVetoException
- if the change is not allowed by a listenerpublic String getDisplayName()
getDisplayName
in class AbstractFileSystem
public boolean isReadOnly()
isReadOnly
in class FileSystem
public void addNotify()
addNotify
in class FileSystem
public void removeNotify()
removeNotify
in class FileSystem
protected Reference createReference(FileObject fo)
AbstractFileSystem
createReference
in class AbstractFileSystem
org.openide.filesystems.AbstractFileSystem
fo
- is FileObject. It`s reference yourequire to get.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |