Uses of Class
org.weblab_project.core.model.Resource

Packages that use Resource
org.weblab_project.core.model   
org.weblab_project.core.model.content   
org.weblab_project.core.model.multimedia   
org.weblab_project.core.model.ontology   
org.weblab_project.core.model.query   
org.weblab_project.core.model.service   
org.weblab_project.core.model.structure   
org.weblab_project.core.model.text   
org.weblab_project.core.model.user   
org.weblab_project.services.analyser.types   
org.weblab_project.services.indexer.types   
org.weblab_project.services.reportprovider.types   
org.weblab_project.services.resourcecontainer.types   
org.weblab_project.services.trainable.types   
 

Uses of Resource in org.weblab_project.core.model
 

Subclasses of Resource in org.weblab_project.core.model
 class Annotation
          An Annotation will contain a set of annotations which refer to a specific resource known as the subject of the annotations.
 class ComposedUnit
          A composed unit is a media unit which only contain a list of other units.
 class Document
          A document is assumed to be a composed unit which handle the references of all the unit which have been build on it through the multiple processes.
 class LowLevelDescriptor
          A low level descriptor is composed of a set features that have been extracted from a document or a part of document.
 class MediaUnit
          This is the major object manipulated through the WebLab platform.
 class PieceOfKnowledge
          A PieceOfKnowledge (or PoK) object should be understood as the definition provided by the W3C in its resource description framework.
 class ResourceCollection
          A resource collection defines a simple list of resources and allows to regroup them with a common meaning or utility.
 class Segment
          A segment is a resource that should not have any content and which is linked to a media unit.
 

Fields in org.weblab_project.core.model with type parameters of type Resource
protected  java.util.List<Resource> ResourceCollection.resource
           
 

Methods in org.weblab_project.core.model that return Resource
 Resource ObjectFactory.createResource()
          Create an instance of Resource
 

Methods in org.weblab_project.core.model that return types with arguments of type Resource
 java.util.List<Resource> ResourceCollection.getResource()
          Gets the value of the resource property.
 

Uses of Resource in org.weblab_project.core.model.content
 

Subclasses of Resource in org.weblab_project.core.model.content
 class BinaryContent
          Binary content simply contains part of a binary large content.
 class Content
          Content is an abstract type which provides limit and offset (their unit are consistent together and described in the specialisations) for instantiable contents.
 class TextContent
          Text content simply contains part of a text in UTF-8.
 

Uses of Resource in org.weblab_project.core.model.multimedia
 

Subclasses of Resource in org.weblab_project.core.model.multimedia
 class Audio
          An audio unit describes audio content out of media document.
 class BinaryMediaUnit
          As a resource, a binary unit could be annotated to provide, for example, meta-information on its content or its format.
 class Image
          An image unit describe a visual static content out of media document.
 class SpatialSegment
          A spatial segment is aiming to localise any meaningful content in a spatial document.
 class TemporalSegment
          A temporal segment is a segment that is described by a start and stop reference in accordance to a millisecond metric.
 class Video
          A video unit describes a dynamic visual content out of media document.
 

Uses of Resource in org.weblab_project.core.model.ontology
 

Subclasses of Resource in org.weblab_project.core.model.ontology
 class Ontology
          Ontologies are introduced as an example of resources that can be used by a service.
 

Uses of Resource in org.weblab_project.core.model.query
 

Subclasses of Resource in org.weblab_project.core.model.query
 class ComposedQuery
          This kind of query is only an aggregation of query using a n-ary boolean operator to combine them.
 class ElementaryQuery
          This kind of query is simply not a ComposedQuery.
 class Query
          A query is a resource which contains request data.
 class ResultSet
          A ResultSet is specific resource to described result of a Query.
 class SimilarityQuery
          This query is dedicated for search by similarity and thus its content is one or more resources.
 class StringQuery
          This query is dedicated for any query expression language which can be expressed in a simple string such as full text queries, XQuery or SPARQL.
 

Fields in org.weblab_project.core.model.query with type parameters of type Resource
protected  java.util.List<Resource> SimilarityQuery.resource
           
protected  java.util.List<Resource> ResultSet.resource
           
 

Methods in org.weblab_project.core.model.query that return types with arguments of type Resource
 java.util.List<Resource> SimilarityQuery.getResource()
          Gets the value of the resource property.
 java.util.List<Resource> ResultSet.getResource()
          Gets the value of the resource property.
 

Uses of Resource in org.weblab_project.core.model.service
 

Subclasses of Resource in org.weblab_project.core.model.service
 class Service
          A service is a resource which contains XML data.
 

Uses of Resource in org.weblab_project.core.model.structure
 

Subclasses of Resource in org.weblab_project.core.model.structure
 class Cell
          A cell is a specific mediaUnit that could handle content structured in table.
 class Line
          A line is a specific media unit that could handle part of content structured in table.
 class Table
          A table is a specific mediaUnit that could handle content structured in table.
 

Uses of Resource in org.weblab_project.core.model.text
 

Subclasses of Resource in org.weblab_project.core.model.text
 class LinearSegment
          A linear segment is a position which can be described by a start and stop reference in accordance to a number of UTF-8 characters metric.
 class Text
          A text unit is the simplest specification of the media unit dedicated to full text data.
 

Uses of Resource in org.weblab_project.core.model.user
 

Subclasses of Resource in org.weblab_project.core.model.user
 class UsageContext
          An usage context represents a specific usage profile of the system.
 class User
          Human in interaction with the system are a part of the WebLab platform.
 

Uses of Resource in org.weblab_project.services.analyser.types
 

Fields in org.weblab_project.services.analyser.types declared as Resource
protected  Resource ProcessReturn.resource
           
protected  Resource ProcessArgs.resource
           
 

Methods in org.weblab_project.services.analyser.types that return Resource
 Resource ProcessReturn.getResource()
          Gets the value of the resource property.
 Resource ProcessArgs.getResource()
          Gets the value of the resource property.
 

Methods in org.weblab_project.services.analyser.types with parameters of type Resource
 void ProcessReturn.setResource(Resource value)
          Sets the value of the resource property.
 void ProcessArgs.setResource(Resource value)
          Sets the value of the resource property.
 

Uses of Resource in org.weblab_project.services.indexer.types
 

Fields in org.weblab_project.services.indexer.types declared as Resource
protected  Resource IndexArgs.resource
           
 

Methods in org.weblab_project.services.indexer.types that return Resource
 Resource IndexArgs.getResource()
          Gets the value of the resource property.
 

Methods in org.weblab_project.services.indexer.types with parameters of type Resource
 void IndexArgs.setResource(Resource value)
          Sets the value of the resource property.
 

Uses of Resource in org.weblab_project.services.reportprovider.types
 

Fields in org.weblab_project.services.reportprovider.types declared as Resource
protected  Resource BuildReportReturn.report
           
protected  Resource AddInformationArgs.resource
           
 

Methods in org.weblab_project.services.reportprovider.types that return Resource
 Resource BuildReportReturn.getReport()
          Gets the value of the report property.
 Resource AddInformationArgs.getResource()
          Gets the value of the resource property.
 

Methods in org.weblab_project.services.reportprovider.types with parameters of type Resource
 void BuildReportReturn.setReport(Resource value)
          Sets the value of the report property.
 void AddInformationArgs.setResource(Resource value)
          Sets the value of the resource property.
 

Uses of Resource in org.weblab_project.services.resourcecontainer.types
 

Fields in org.weblab_project.services.resourcecontainer.types declared as Resource
protected  Resource SaveResourceArgs.resource
           
protected  Resource GetResourceReturn.resource
           
 

Methods in org.weblab_project.services.resourcecontainer.types that return Resource
 Resource SaveResourceArgs.getResource()
          Gets the value of the resource property.
 Resource GetResourceReturn.getResource()
          Gets the value of the resource property.
 

Methods in org.weblab_project.services.resourcecontainer.types with parameters of type Resource
 void SaveResourceArgs.setResource(Resource value)
          Sets the value of the resource property.
 void GetResourceReturn.setResource(Resource value)
          Sets the value of the resource property.
 

Uses of Resource in org.weblab_project.services.trainable.types
 

Fields in org.weblab_project.services.trainable.types declared as Resource
protected  Resource AddTrainResourceArgs.resource
           
 

Methods in org.weblab_project.services.trainable.types that return Resource
 Resource AddTrainResourceArgs.getResource()
          Gets the value of the resource property.
 

Methods in org.weblab_project.services.trainable.types with parameters of type Resource
 void AddTrainResourceArgs.setResource(Resource value)
          Sets the value of the resource property.
 



Copyright © 2004-2009. All Rights Reserved.