Uses of Class
ccc.api.core.Template

Packages that use Template
ccc.api.core   
ccc.api.jaxrs   
ccc.client.gwt.binding   
ccc.client.gwt.remoting   
ccc.client.gwt.views.gxt   
ccc.client.gwt.widgets   
ccc.client.presenters   
ccc.client.views   
ccc.commands Commands available in CCC. 
ccc.domain The core domain model for CCC. 
ccc.plugins.s11n.json   
ccc.services.ejb3 EJB3 implementation of the CCC API. 
 

Uses of Template in ccc.api.core
 

Methods in ccc.api.core that return Template
 Template Resources.computeTemplate(java.util.UUID resourceId)
          Returns summary of the template assigned for a resource.
 Template Templates.retrieve(java.util.UUID templateId)
          Retrieve the delta for a template.
 Template Templates.retrieveRevision(java.util.UUID templateId, int revision)
          Retrieve a template revision.
static Template Template.summary(java.util.UUID id, ResourceName name, java.lang.String title, java.lang.String description, java.lang.String body, java.lang.String definition)
          Create a summary DTO.
 

Methods in ccc.api.core that return types with arguments of type Template
 PagedCollection<Template> Templates.query(int pageNo, int pageSize)
          List all the templates currently available in CCC.
 

Methods in ccc.api.core with parameters of type Template
 ResourceSummary Templates.create(Template template)
          Create a new template in CCC.
 void Templates.update(java.util.UUID templateId, Template delta)
          Update the specified template on the server.
 

Uses of Template in ccc.api.jaxrs
 

Methods in ccc.api.jaxrs that return Template
 Template ResourcesImpl.computeTemplate(java.util.UUID resourceId)
          Returns summary of the template assigned for a resource.
 Template TemplatesImpl.retrieve(java.util.UUID templateId)
          Retrieve the delta for a template.
 Template TemplatesImpl.retrieveRevision(java.util.UUID templateId, int revision)
          Retrieve a template revision.
 

Methods in ccc.api.jaxrs that return types with arguments of type Template
 PagedCollection<Template> TemplatesImpl.query(int pageNo, int pageSize)
          List all the templates currently available in CCC.
 

Methods in ccc.api.jaxrs with parameters of type Template
 ResourceSummary TemplatesImpl.create(Template template)
          Create a new template in CCC.
 void TemplatesImpl.update(java.util.UUID templateId, Template delta)
          Update the specified template on the server.
 

Uses of Template in ccc.client.gwt.binding
 

Methods in ccc.client.gwt.binding with parameters of type Template
static com.extjs.gxt.ui.client.data.BeanModel DataBinding.bindTemplate(Template template)
          Create a model data object for a single template.
 

Method parameters in ccc.client.gwt.binding with type arguments of type Template
static java.util.List<com.extjs.gxt.ui.client.data.BeanModel> DataBinding.bindTemplateDelta(java.util.Collection<Template> list)
          Create model data objects for a collection of template summaries.
 

Uses of Template in ccc.client.gwt.remoting
 

Methods in ccc.client.gwt.remoting with parameters of type Template
protected abstract  void ComputeTemplateAction.template(Template t)
           
 

Method parameters in ccc.client.gwt.remoting with type arguments of type Template
protected abstract  void GetTemplatesAction.execute(java.util.Collection<Template> templates)
          Deprecated. 
 

Constructors in ccc.client.gwt.remoting with parameters of type Template
CreateTemplateAction(Template delta)
          Constructor.
UpdateTemplateAction(Template details)
          Constructor.
 

Uses of Template in ccc.client.gwt.views.gxt
 

Methods in ccc.client.gwt.views.gxt that return Template
 Template CreatePageDialog.getSelectedTemplate()
          Accessor.
 

Method parameters in ccc.client.gwt.views.gxt with type arguments of type Template
 void ChooseTemplateDialog.setTemplates(java.util.Collection<Template> templates)
          Mutator.
 

Constructors in ccc.client.gwt.views.gxt with parameters of type Template
EditTemplateDialog(Template model, ResourceSummary proxy, SingleSelectionModel ssm)
          Constructor.
PreviewTemplateDialog(Template template)
          Constructor.
UpdatePageDialog(Page page, Template template, ResourceTable rt)
          Constructor.
 

Constructor parameters in ccc.client.gwt.views.gxt with type arguments of type Template
CreatePageDialog(java.util.Collection<Template> list, ResourceSummary parent)
          Constructor.
 

Uses of Template in ccc.client.gwt.widgets
 

Methods in ccc.client.gwt.widgets that return Template
 Template EditPagePanel.template()
          Accessor for the definition of page's template.
 

Constructors in ccc.client.gwt.widgets with parameters of type Template
EditPagePanel(Template template)
          Constructor.
 

Uses of Template in ccc.client.presenters
 

Constructor parameters in ccc.client.presenters with type arguments of type Template
ChangeResourceTemplatePresenter(ChangeResourceTemplate view, ResourceSummary model, java.util.Collection<Template> templates)
          Constructor.
 

Uses of Template in ccc.client.views
 

Methods in ccc.client.views that return Template
 Template CreatePage.getSelectedTemplate()
          Accessor.
 

Method parameters in ccc.client.views with type arguments of type Template
 void ChangeResourceTemplate.setTemplates(java.util.Collection<Template> templates)
          Mutator.
 

Uses of Template in ccc.commands
 

Methods in ccc.commands with parameters of type Template
 Command<? extends ResourceEntity> CommandFactory.createTemplateCommand(Template template)
          Create a 'create template' command.
 

Constructors in ccc.commands with parameters of type Template
UpdateTemplateCommand(IRepositoryFactory repoFactory, java.util.UUID templateId, Template delta)
          Constructor.
 

Uses of Template in ccc.domain
 

Methods in ccc.domain that return Template
protected  Template TemplateRevision.delta()
          Retrieve the revision's state.
 Template TemplateEntity.forCurrentRevision()
          Create a snapshot for the current revision.
 Template TemplateEntity.forSpecificRevision(int revNo)
          Create a snapshot for the specified revision.
 Template TemplateEntity.forWorkingCopy()
          Create a snapshot for the working copy.
 Template TemplateEntity.summarize()
          Create a summary for a template.
 

Methods in ccc.domain that return types with arguments of type Template
protected  java.util.Collection<Template> TemplateEntity.deltaTemplates(java.util.List<TemplateEntity> templates)
          Create deltas for a collection of templates.
static java.util.List<Template> TemplateEntity.mapTemplates(java.util.List<TemplateEntity> templates)
          Create summaries for a collection of templates.
 

Methods in ccc.domain with parameters of type Template
 void TemplateEntity.update(Template delta, RevisionMetadata metadata)
          Update the contents of this template.
 

Uses of Template in ccc.plugins.s11n.json
 

Methods in ccc.plugins.s11n.json that return Template
protected  Template TemplateSerializer.createObject()
          Create a new instance of type T.
 Template TemplateSerializer.read(Json json)
          Deserialize from a representation.
 

Methods in ccc.plugins.s11n.json with parameters of type Template
 Json TemplateSerializer.write(Json json, Template instance)
          Serialize to representation.
 

Uses of Template in ccc.services.ejb3
 

Methods in ccc.services.ejb3 that return Template
 Template ResourcesEJB.computeTemplate(java.util.UUID resourceId)
          Returns summary of the template assigned for a resource.
 Template TemplatesEJB.retrieve(java.util.UUID templateId)
          Retrieve the delta for a template.
 Template TemplatesEJB.retrieveRevision(java.util.UUID templateId, int revision)
           
 

Methods in ccc.services.ejb3 that return types with arguments of type Template
 PagedCollection<Template> TemplatesEJB.query(int pageNo, int pageSize)
          List all the templates currently available in CCC.
 

Methods in ccc.services.ejb3 with parameters of type Template
 ResourceSummary TemplatesEJB.create(Template template)
          Create a new template in CCC.
 void TemplatesEJB.update(java.util.UUID templateId, Template delta)
          Update the specified template on the server.
 



Copyright © 2010. All Rights Reserved.