Package jetbrains.mps.project.io
Interface DescriptorIO<T>
- 
public interface DescriptorIO<T> 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TreadFromFile(IFile file)TreadFromXml(org.jdom.Element element, IFile anchorFile)voidwriteToFile(T t, IFile file)voidwriteToXml(T t, org.jdom.Element element, IFile anchorFile) 
 - 
 
- 
- 
Method Detail
- 
readFromFile
T readFromFile(IFile file) throws DescriptorIOException
- Throws:
 DescriptorIOException
 
- 
writeToFile
void writeToFile(T t, IFile file) throws DescriptorIOException
- Throws:
 DescriptorIOException
 
- 
readFromXml
T readFromXml(org.jdom.Element element, IFile anchorFile) throws DescriptorIOException
- Throws:
 DescriptorIOException
 
- 
writeToXml
void writeToXml(T t, org.jdom.Element element, IFile anchorFile) throws DescriptorIOException
- Throws:
 DescriptorIOException
 
 - 
 
 -