testsgen.ifc
Interface ParsedSourceIfc

All Superinterfaces:
java.lang.Comparable
All Known Implementing Classes:
ParsedSourceImpl

public interface ParsedSourceIfc
extends java.lang.Comparable

ParsedSourceIfc.java contains definition of structure representing parsed source file. This interface is class oriented. It means that it assumes that file contains only definition of one class. It is true for most cases when we parse java code. In future this design should be extended and this class/file should be named as ParsedClassIfc. For source code definition should be redesigned.

Created: Sun Dec 2 17:20:19 2001

Version:
$Revision: 1.10 $
Author:
Artur Hefczyc

Method Summary
 MethodIfc[] getConstructors()
           
 MethodIfc getDefaultConstructor()
           
 java.lang.String getFileName()
           
 MethodIfc getMethod(java.lang.String name)
           
 MethodIfc[] getMethods()
           
 java.lang.String getName()
           
 ParsedSourceIfc getTestSource()
           
 void setConstructors(MethodIfc[] constr)
           
 void setDefaultConstructor(MethodIfc meth)
           
 void setFileName(java.lang.String name)
           
 void setMethods(MethodIfc[] methods)
           
 void setName(java.lang.String name)
           
 void setTestSource(ParsedSourceIfc test_src)
           
 java.lang.String toXML()
           
 void toXML(java.io.OutputStream out)
           
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

setFileName

public void setFileName(java.lang.String name)

getFileName

public java.lang.String getFileName()

setName

public void setName(java.lang.String name)

getName

public java.lang.String getName()

setDefaultConstructor

public void setDefaultConstructor(MethodIfc meth)

getDefaultConstructor

public MethodIfc getDefaultConstructor()

setConstructors

public void setConstructors(MethodIfc[] constr)

getConstructors

public MethodIfc[] getConstructors()

setMethods

public void setMethods(MethodIfc[] methods)

getMethods

public MethodIfc[] getMethods()

getMethod

public MethodIfc getMethod(java.lang.String name)

toXML

public void toXML(java.io.OutputStream out)

toXML

public java.lang.String toXML()

setTestSource

public void setTestSource(ParsedSourceIfc test_src)

getTestSource

public ParsedSourceIfc getTestSource()


Copyright © GNU, wttools developers Team.