Traceability

Uses of Interface
ttm.Document

Packages that use Document
org.topcased.traceability.analyzers.openOffice   
org.topcased.traceability.hmi.modeler   
org.topcased.traceability.hmi.util   
tte.analyzers   
tte.analyzers.basics   
ttm   
ttm.impl   
ttm.util   
 

Uses of Document in org.topcased.traceability.analyzers.openOffice
 

Methods in org.topcased.traceability.analyzers.openOffice with parameters of type Document
static void ODTConverter.convertDocumentToTRAMwayFormat_0_1_0(java.io.File inFile, java.io.File outFile, java.lang.String arguments, Document document)
          This method is a basic OpenOffice Writer document transformer to TopCased TRAMway document file format.
static void ODTEditor.editElement(Document document, Element element)
           
 void OpenOfficeAnalyzer.executeConversionMethodID(java.lang.String id, java.io.File inFile, java.io.File outFile, java.lang.String conversionDefaultArguments, Document document)
           
 void OpenOfficeAnalyzer.executeEditionMethodID(java.lang.String id, Document document, Element element)
           
 

Uses of Document in org.topcased.traceability.hmi.modeler
 

Methods in org.topcased.traceability.hmi.modeler with parameters of type Document
protected  GraphElement TWCreationUtils.createGraphElementDocument(Document element, java.lang.String presentation)
           
 

Uses of Document in org.topcased.traceability.hmi.util
 

Methods in org.topcased.traceability.hmi.util that return Document
 Document CoveringDocument.getParent()
           
 Document CoveringDocument.getWrappedDocument()
           
 

Methods in org.topcased.traceability.hmi.util with parameters of type Document
static float ModelHelper.getCoverageResult(Document covered, CoveringDocument covering)
           
static float ModelHelper.getCoverageResult(Document covered, Document covering)
           
static int ModelHelper.getNbRequirements(Document coveredDocument)
           
 

Constructors in org.topcased.traceability.hmi.util with parameters of type Document
CoveringDocument(Document coveringDoc, Document parent)
           
 

Uses of Document in tte.analyzers
 

Methods in tte.analyzers with parameters of type Document
 void ExtendedAnalyzerConversionMethod.executeConversion(java.io.File sourceFile, java.io.File destFile, ExtendedAnalyzer extAnalyzer, Document document)
          Runs the conversion.
 void IAnalyzer.executeConversionMethodID(java.lang.String id, java.io.File inFile, java.io.File outFile, java.lang.String conversionDefaultArguments, Document document)
          Runs the conversion of the method which id is in parameter.
 void ExtendedAnalyzerEditionMethod.executeEdition(Document document, Element element)
          Runs the edition.
 void IAnalyzer.executeEditionMethodID(java.lang.String id, Document document, Element element)
          Runs the edition method which id is in parameter.
 

Uses of Document in tte.analyzers.basics
 

Methods in tte.analyzers.basics with parameters of type Document
 void DefaultAnalyzer.executeConversionMethodID(java.lang.String id, java.io.File inFile, java.io.File outFile, java.lang.String defaultConversionArguments, Document document)
          Runs the conversion of the method which id is in parameter.
 void DefaultAnalyzer.executeEditionMethodID(java.lang.String id, Document document, Element element)
          Runs the edition method which id is in parameter.
 

Uses of Document in ttm
 

Methods in ttm that return Document
 Document TtmFactory.createDocument()
          Returns a new object of class 'Document'
 Document CoverPoint.getCoveredDocument()
          Returns the value of the 'Covered Document' container reference.
 Document HierarchicalElement.getDocument()
          Returns the value of the 'Parent document'
 Document Element.getDocument()
          Gets the document of the Element.
 Document CoverageResult.getFromDocument()
          Returns the value of the 'From Document' reference
 Document CoverageResult.getToDocument()
          Returns the value of the 'To Document' reference
 

Methods in ttm that return types with arguments of type Document
 java.util.List<Document> Document.getCoveredDocuments()
          Returns the value of the 'Covered Documents' reference list.
 java.util.List<Document> Document.getCoveringDocuments()
          Returns the value of the 'Covering Documents' reference list.
 java.util.List<Document> Project.getDocuments()
          Returns the value of the 'Document' containment reference list.
 java.util.Set<Document> Project.getRootDocumentsFromProjectElements()
          returns the documents of the projet which do not cover any other document The set contents are of type DataDescription.Document
 

Methods in ttm with parameters of type Document
 void Project.addCoverageResult(Document fromDoc, CoverPoint fromCoverPoint, Document to, float ratio)
          add Coverage Result between a document/coverPoint and another document
 void CoverPoint.setCoveredDocument(Document value)
          Sets the value of the 'Covered Document' container reference
 void CoverageResult.setFromDocument(Document value)
          Sets the value of the 'From Document' reference
 void CoverageResult.setToDocument(Document value)
          Sets the value of the 'To Document' reference
 

Uses of Document in ttm.impl
 

Classes in ttm.impl that implement Document
 class DocumentImpl
          An implementation of the model object 'Document'
 

Fields in ttm.impl declared as Document
protected  Document CoverageResultImpl.fromDocument
          The cached value of the 'From Document' reference
protected  Document CoverageResultImpl.toDocument
          The cached value of the 'To Document' reference
 

Methods in ttm.impl that return Document
 Document CoverageResultImpl.basicGetFromDocument()
           
 Document CoverageResultImpl.basicGetToDocument()
           
 Document TtmFactoryImpl.createDocument()
           
 Document CoverPointImpl.getCoveredDocument()
           
 Document NavigationLinkImpl.getDocument()
           
 Document TextImpl.getDocument()
           
 Document AttributeImpl.getDocument()
           
 Document HierarchicalElementImpl.getDocument()
           
 Document DocumentImpl.getDocument()
           
 Document ElementImpl.getDocument()
           
 Document ProjectImpl.getDocument()
           
 Document CoverLinkImpl.getDocument()
           
 Document CoverageResultImpl.getFromDocument()
           
 Document CoverageResultImpl.getToDocument()
           
 

Methods in ttm.impl that return types with arguments of type Document
 java.util.List<Document> DocumentImpl.getCoveredDocuments()
           
 java.util.List<Document> DocumentImpl.getCoveringDocuments()
           
 java.util.Set<Document> ProjectImpl.getRootDocumentsFromProjectElements()
          TNI Addition
 

Methods in ttm.impl with parameters of type Document
 void ProjectImpl.addCoverageResult(Document fromDoc, CoverPoint fromCoverPoint, Document to, float ratio)
          TNI Addition
 NotificationChain CoverPointImpl.basicSetCoveredDocument(Document newCoveredDocument, NotificationChain msgs)
           
 void CoverPointImpl.setCoveredDocument(Document newCoveredDocument)
           
 void CoverageResultImpl.setFromDocument(Document newFromDocument)
           
 void CoverageResultImpl.setToDocument(Document newToDocument)
           
 

Constructors in ttm.impl with parameters of type Document
CoverageResultImpl(Document fromDocument, CoverPoint fromCoverPoint, Document to, float coverageRatio, Project prj)
          constructor to create Coverage Result between a document/coverPoint and another document
 

Uses of Document in ttm.util
 

Methods in ttm.util with parameters of type Document
 java.lang.Object TtmSwitch.caseDocument(Document object)
          Returns the result of interpretting the object as an instance of 'Document'
 


Traceability

Copyright (c) 2005 TOPCASED Contributors 2005 - 2007. All rights reserved.