Uses of Class
com.jamasoftware.contour.domain.DocumentType

Packages that use DocumentType
com.jamasoftware.contour.dao   
com.jamasoftware.contour.domain Classes for domain objects. 
 

Uses of DocumentType in com.jamasoftware.contour.dao
 

Methods in com.jamasoftware.contour.dao that return DocumentType
 DocumentType DocumentTypeDao.getAttachmentDocumentType(java.lang.Integer orgId)
           
 DocumentType DocumentTypeDao.getCoreDocumentType(java.lang.Integer organizationId)
           
 DocumentType DocumentTypeDao.getDocumentType(java.lang.Integer documentTypeId)
           
 DocumentType DocumentTypeDao.getDocumentTypeForCategory(java.lang.Integer documentTypeCategoryId, java.lang.Integer organizationId)
           
 

Methods in com.jamasoftware.contour.dao that return types with arguments of type DocumentType
 java.util.List<DocumentType> DocumentTypeFieldDao.getDocumentTypeByLookupTypeId(java.lang.Integer lookupTypeId)
           
 java.util.List<DocumentType> DocumentTypeDao.getDocumentTypeList(java.lang.Integer scope, java.lang.Integer refId)
           
 java.util.List<DocumentType> DocumentTypeDao.getDocumentTypesByCategories(java.lang.Integer scope, java.lang.Integer refId, java.util.List<java.lang.Integer> categoryIds)
           
 java.util.List<DocumentType> DocumentTypeDao.getDocumentTypesByOrgCategory(java.lang.Integer scope, java.lang.Integer refId, java.lang.Integer category)
           
 

Methods in com.jamasoftware.contour.dao with parameters of type DocumentType
 java.util.List<java.lang.Integer> DocumentTypeFieldDao.clearDocumentValuesForDeletedField(DocumentType docType, DocumentField docField)
           
 void DocumentTypeDao.deleteDocumentType(DocumentType documentType)
           
 void DocumentTypeDao.saveDocumentType(DocumentType documentType)
           
 

Uses of DocumentType in com.jamasoftware.contour.domain
 

Fields in com.jamasoftware.contour.domain declared as DocumentType
protected  DocumentType ContourItem.documentType
           
 

Methods in com.jamasoftware.contour.domain that return DocumentType
static DocumentType DocumentType.createAttachmentDocumentTypeWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createComponentDocumentTypeWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createCoreDocumentTypeWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createSectionDocumentTypeWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createSetDocumentTypeWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createTestCycleDocumentTypeWithFields(DocumentType testPlanType, java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createTestPlanDocumentTypeWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createTestRunDocumentTypeWithFields(DocumentType testPlanType, DocumentType testCycleType, java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createTextDocumentTypeWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
 DocumentType Document.getChildDocumentType()
           
 DocumentType ContourItem.getChildDocumentType()
           
 DocumentType DocumentGroup.getDocumentType()
           
 DocumentType FieldLayout.getDocumentType()
           
 DocumentType Filter.getDocumentType()
           
 DocumentType DocumentTypeField.getDocumentType()
           
 DocumentType ContourItem.getDocumentType()
           
 DocumentType EventEntry.getDocumentType()
           
 

Methods in com.jamasoftware.contour.domain that return types with arguments of type DocumentType
static java.util.List<DocumentType> DocumentType.createSystemDocumentTypesWithFields(java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
 

Methods in com.jamasoftware.contour.domain with parameters of type DocumentType
static java.util.List<DocumentTypeField> DocumentType.createAttachmentFields(DocumentType attachmentType, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static java.util.List<DocumentTypeField> DocumentType.createCoreFields(DocumentType coreType, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentTypeField DocumentTypeField.createDocumentTypeField(DocumentType docType, java.lang.String name, java.lang.String desc, java.lang.String label, java.lang.Integer sortOrder, java.lang.Boolean addToListView, java.lang.Boolean readOnly, java.lang.Integer controlTypeId, java.lang.Boolean required, java.lang.Boolean triggerSuspect, boolean isSyncField, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentTypeField DocumentTypeField.createDocumentTypeField(DocumentType docType, java.lang.String name, java.lang.String desc, java.lang.String label, java.lang.Integer sortOrder, java.lang.Boolean addToListView, java.lang.Boolean readOnly, java.lang.Integer controlTypeId, java.lang.Boolean required, java.lang.Boolean triggerSuspect, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentTypeField DocumentTypeField.createDocumentTypeField(DocumentType docType, java.lang.String name, java.lang.String desc, java.lang.String label, java.lang.Integer sortOrder, java.lang.Boolean addToListView, java.lang.Boolean readOnly, java.lang.Integer controlTypeId, java.lang.Boolean required, java.lang.Boolean triggerSuspect, java.lang.Integer lookupTypeId, boolean isSyncField, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentTypeField DocumentTypeField.createDocumentTypeField(DocumentType docType, java.lang.String name, java.lang.String desc, java.lang.String label, java.lang.Integer sortOrder, java.lang.Boolean addToListView, java.lang.Boolean readOnly, java.lang.Integer controlTypeId, java.lang.Boolean required, java.lang.Boolean triggerSuspect, java.lang.Integer lookupTypeId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createTestCycleDocumentTypeWithFields(DocumentType testPlanType, java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static DocumentType DocumentType.createTestRunDocumentTypeWithFields(DocumentType testPlanType, DocumentType testCycleType, java.lang.Integer scope, java.lang.Integer refId, com.jamasoftware.contour.service.DocumentTypeService documentTypeService, com.jamasoftware.contour.service.FieldLayoutService fieldLayoutService)
           
static java.lang.String DocumentType.getDisplayFor(DocumentType type, DocumentType childType)
           
static boolean DocumentTypeCategory.isCategory(DocumentType docType, DocumentTypeCategory category)
           
static boolean DocumentTypeCategory.isChildTypeType(DocumentType documentType)
          Determine if a DocumentType is a childType type
static boolean DocumentTypeCategory.isFolderType(DocumentType documentType)
          Determine if a DocumentType is a folder type
static boolean DocumentTypeCategory.isItemSyncAllowed(DocumentType documentType)
           
static boolean DocumentTypeCategory.isNoRelationshipType(DocumentType documentType)
          Determine if a DocumentType is a no-relationship type
static boolean DocumentTypeCategory.isPermissionType(DocumentType documentType)
          Determine if a DocumentType is a permission type (a "permission" type is any type of document where permissions are placed)
static boolean DocumentTypeCategory.isSystemType(DocumentType documentType)
          Determine if a DocumentType is a system controlled type
static boolean DocumentField.isValidFieldForCategory(DocumentField field, DocumentType docType)
          This method tells you if a field is valid for a given DocumentTypeCategory.
 void Document.setChildDocumentType(DocumentType childDocumentType)
           
 void DocumentGroup.setDocumentType(DocumentType documentType1)
           
 void FieldLayout.setDocumentType(DocumentType documentType)
           
 void Filter.setDocumentType(DocumentType documentType)
           
 void DocumentTypeField.setDocumentType(DocumentType documentType)
           
 void ContourItem.setDocumentType(DocumentType documentType)
           
 void EventEntry.setDocumentType(DocumentType documentType)
           
 

Constructors in com.jamasoftware.contour.domain with parameters of type DocumentType
DocumentGroup(java.lang.Integer id, com.jamasoftware.contour.project.domain.Project project, DocumentType docType, boolean active)
           
DocumentTypeField(java.lang.String description, DocumentType documentType, DocumentField documentField, java.lang.String label, java.lang.Integer sortOrder, java.lang.Boolean readOnly, java.lang.Integer controlTypeId, java.lang.Boolean required, java.lang.Boolean triggerSuspect)
           
 



Copyright (c) 2010 Jama Software, Inc. All Rights Reserved.