xArch/xADL 2.0 Data Binding Library

edu.uci.isr.xarch.analysis
Interface IArchAnalysis

All Superinterfaces:
IXArchElement
All Known Implementing Classes:
ArchAnalysisImpl

public interface IArchAnalysis
extends IXArchElement

Interface for accessing objects of the ArchAnalysis xsi:type in the analysis namespace.

Author:
Automatically generated by xArch apigen

Field Summary
static XArchTypeMetadata TYPE_METADATA
           
 
Fields inherited from interface edu.uci.isr.xarch.IXArchElement
DEPTH_INFINITY, DEPTH_ONE, DEPTH_ZERO
 
Method Summary
 void addAnalysis(IAnalysis newAnalysis)
          Add a analysis to this ArchAnalysis.
 void addAnalysiss(Collection analysiss)
          Add a collection of analysiss to this ArchAnalysis.
 void clearAnalysiss()
          Remove all analysiss from this ArchAnalysis.
 Collection getAllAnalysiss()
          Get all the analysiss from this ArchAnalysis.
 boolean hasAllAnalysiss(Collection analysissToCheck)
          Determine if this ArchAnalysis contains each element in the given set of analysiss.
 boolean hasAnalysis(IAnalysis analysisToCheck)
          Determine if this ArchAnalysis contains a given analysis.
 Collection hasAnalysiss(Collection analysissToCheck)
          Determine if this ArchAnalysis contains the given set of analysiss.
 boolean isEquivalent(IArchAnalysis ArchAnalysisToCheck)
          Determine if another ArchAnalysis is equivalent to this one, ignoring ID's.
 void removeAnalysis(IAnalysis analysisToRemove)
          Remove the given analysis from this ArchAnalysis.
 void removeAnalysiss(Collection analysiss)
          Remove all the given analysiss from this ArchAnalysis.
 
Methods inherited from interface edu.uci.isr.xarch.IXArchElement
cloneElement, getInstanceMetadata, getTypeMetadata, getXArch, setXArch
 

Field Detail

TYPE_METADATA

public static final XArchTypeMetadata TYPE_METADATA
Method Detail

addAnalysis

public void addAnalysis(IAnalysis newAnalysis)
Add a analysis to this ArchAnalysis.

Parameters:
newAnalysis - analysis to add.

addAnalysiss

public void addAnalysiss(Collection analysiss)
Add a collection of analysiss to this ArchAnalysis.

Parameters:
analysiss - analysiss to add.

clearAnalysiss

public void clearAnalysiss()
Remove all analysiss from this ArchAnalysis.


removeAnalysis

public void removeAnalysis(IAnalysis analysisToRemove)
Remove the given analysis from this ArchAnalysis. Matching is done by the isEquivalent(...) function.

Parameters:
analysisToRemove - analysis to remove.

removeAnalysiss

public void removeAnalysiss(Collection analysiss)
Remove all the given analysiss from this ArchAnalysis. Matching is done by the isEquivalent(...) function.

Parameters:
analysiss - analysis to remove.

getAllAnalysiss

public Collection getAllAnalysiss()
Get all the analysiss from this ArchAnalysis.

Returns:
all analysiss in this ArchAnalysis.

hasAnalysis

public boolean hasAnalysis(IAnalysis analysisToCheck)
Determine if this ArchAnalysis contains a given analysis.

Returns:
true if this ArchAnalysis contains the given analysisToCheck, false otherwise.

hasAnalysiss

public Collection hasAnalysiss(Collection analysissToCheck)
Determine if this ArchAnalysis contains the given set of analysiss.

Parameters:
analysissToCheck - analysiss to check for.
Returns:
Collection of java.lang.Boolean. If the ith element in analysiss was found, then the ith element of the collection will be set to true, otherwise it will be set to false. Matching is done with the isEquivalent(...) method.

hasAllAnalysiss

public boolean hasAllAnalysiss(Collection analysissToCheck)
Determine if this ArchAnalysis contains each element in the given set of analysiss.

Parameters:
analysissToCheck - analysiss to check for.
Returns:
true if every element in analysiss is found in this ArchAnalysis, false otherwise.

isEquivalent

public boolean isEquivalent(IArchAnalysis ArchAnalysisToCheck)
Determine if another ArchAnalysis is equivalent to this one, ignoring ID's.

Parameters:
ArchAnalysisToCheck - ArchAnalysis to compare to this one.
Returns:
true if all the child elements of this ArchAnalysis are equivalent, false otherwise.

xArch/xADL 2.0 Data Binding Library