FileDocCategorySizeDatePackage
DocumentTemplate.javaAPI DocExample1228Thu Feb 17 20:00:58 GMT 2000DocMgmt.Document

DocumentTemplate.java

/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/

package DocMgmt.Document;

import java.util.Vector;

/** @stereotype description */
public class DocumentTemplate {
    public void addPart() {
    }

    /**  */
    public Document generateAFillInTheBlanksDocument() {
        return new Document();
    }

    public boolean conformsToGoverningDocumentDesc() {
        return false;
    }

    public Vector listTemplatesAffectedIfThisPartChanges() {
        return new Vector();
    }

    private int type;
    private String number;
    private String name;

    /**
     * @supplierCardinality 0..*
     * @clientCardinality 0..1
     * @supplierRole version
     */
    private DocumentTemplate lnkUnnamed1;
    private String defaultContent;
    private int rationale;

    /**
     *@shapeType AggregationLink
     *    @associates <b>DocumentTemplate</b>
     * @supplierCardinality 0..*
     * @supplierRole part
     * @clientCardinality 0..*
     */
    private Vector lnkUnnamed2;
}