Class Utils.SplitResult
- java.lang.Object
-
- de.uni_hildesheim.sse.translation.Utils.SplitResult
-
- Enclosing class:
- Utils
public static class Utils.SplitResult extends java.lang.ObjectThe result of splitting a contents object.- Author:
- Holger Eichelberger
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<de.uni_hildesheim.sse.ivml.AttrAssignment>attrAssignmentsprivate java.util.List<de.uni_hildesheim.sse.ivml.AnnotateTo>attrsprivate java.util.List<de.uni_hildesheim.sse.ivml.Eval>evalsprivate java.util.List<de.uni_hildesheim.sse.ivml.ExpressionStatement>exprsprivate java.util.List<de.uni_hildesheim.sse.ivml.Freeze>freezesprivate java.util.List<de.uni_hildesheim.sse.ivml.OpDefStatement>opdefsprivate java.util.List<de.uni_hildesheim.sse.ivml.Typedef>typedefsprivate java.util.List<de.uni_hildesheim.sse.ivml.VariableDeclaration>varDecls
-
Constructor Summary
Constructors Constructor Description SplitResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<de.uni_hildesheim.sse.ivml.AttrAssignment>getAttrAssignments()Returns the attribute assignments.java.util.List<de.uni_hildesheim.sse.ivml.AnnotateTo>getAttrs()Returns the attributes.java.util.List<de.uni_hildesheim.sse.ivml.Eval>getEvals()Returns the evals.java.util.List<de.uni_hildesheim.sse.ivml.ExpressionStatement>getExprs()Returns the expressions.java.util.List<de.uni_hildesheim.sse.ivml.Freeze>getFreezes()Returns the freezes.java.util.List<de.uni_hildesheim.sse.ivml.OpDefStatement>getOpdefs()Returns the operation definitions.java.util.List<de.uni_hildesheim.sse.ivml.Typedef>getTypedefs()Returns the type definitions.java.util.List<de.uni_hildesheim.sse.ivml.VariableDeclaration>getVarDecls()Returns the variable declarations.
-
-
-
Field Detail
-
typedefs
private java.util.List<de.uni_hildesheim.sse.ivml.Typedef> typedefs
-
varDecls
private java.util.List<de.uni_hildesheim.sse.ivml.VariableDeclaration> varDecls
-
freezes
private java.util.List<de.uni_hildesheim.sse.ivml.Freeze> freezes
-
evals
private java.util.List<de.uni_hildesheim.sse.ivml.Eval> evals
-
exprs
private java.util.List<de.uni_hildesheim.sse.ivml.ExpressionStatement> exprs
-
attrs
private java.util.List<de.uni_hildesheim.sse.ivml.AnnotateTo> attrs
-
opdefs
private java.util.List<de.uni_hildesheim.sse.ivml.OpDefStatement> opdefs
-
attrAssignments
private java.util.List<de.uni_hildesheim.sse.ivml.AttrAssignment> attrAssignments
-
-
Method Detail
-
getTypedefs
public java.util.List<de.uni_hildesheim.sse.ivml.Typedef> getTypedefs()
Returns the type definitions.- Returns:
- the type definitions or null
-
getVarDecls
public java.util.List<de.uni_hildesheim.sse.ivml.VariableDeclaration> getVarDecls()
Returns the variable declarations.- Returns:
- the variable declarations or null
-
getFreezes
public java.util.List<de.uni_hildesheim.sse.ivml.Freeze> getFreezes()
Returns the freezes.- Returns:
- the freezes or null
-
getEvals
public java.util.List<de.uni_hildesheim.sse.ivml.Eval> getEvals()
Returns the evals.- Returns:
- the evals or null
-
getExprs
public java.util.List<de.uni_hildesheim.sse.ivml.ExpressionStatement> getExprs()
Returns the expressions.- Returns:
- the expressions or null
-
getAttrs
public java.util.List<de.uni_hildesheim.sse.ivml.AnnotateTo> getAttrs()
Returns the attributes.- Returns:
- the attributes or null
-
getOpdefs
public java.util.List<de.uni_hildesheim.sse.ivml.OpDefStatement> getOpdefs()
Returns the operation definitions.- Returns:
- the operation definitions or null
-
getAttrAssignments
public java.util.List<de.uni_hildesheim.sse.ivml.AttrAssignment> getAttrAssignments()
Returns the attribute assignments.- Returns:
- the attribute assignments or null
-
-