4A Server -  2.0
 All Classes Namespaces Files Functions Variables Enumerator
cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative Class Reference

Class representing alternative of suggestion. More...

Inheritance diagram for cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative:
Inheritance graph
Collaboration diagram for cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative:
Collaboration graph

Public Member Functions

 Alternative ()
 
 Alternative (AnnotType type, String content, String nestedIn)
 
 Alternative (Integer id, String authorIdStr, String authorName, String authorAddress, AnnotDocument sourceDocument, String content, String nestedIn)
 
 Alternative (AnnotType annotType, Date created, String authorIdStr, String authorName, String authorAddress, AnnotDocument sourceDocument, String content)
 
 Alternative (AnnotType annotType, Date created, String authorIdStr, String authorName, String authorAddress, AnnotDocument sourceDocument, String content, Alternative nestedInAlternative)
 
Integer getId ()
 
void setId (Integer id)
 
Integer getConfidence ()
 
void setConfidence (Integer confidence)
 
AnnotType getAnnotType ()
 
void setAnnotType (AnnotType annotType)
 
Date getCreated ()
 
void setCreated (Date created)
 
User getUser ()
 
void setUser (User user)
 
String getAuthorIdStr ()
 
void setAuthorIdStr (String authorIdStr)
 
String getAuthorName ()
 
void setAuthorName (String authorName)
 
String getAuthorAddress ()
 
void setAuthorAddress (String authorAddress)
 
String getSource ()
 
void setSource (String source)
 
Integer getSourceDocumentId ()
 
void setSourceDocumentId (Integer sourceDocumentId)
 
Integer getType ()
 
void setType (Integer type)
 
String getContent ()
 
void setContent (String content)
 
String getAutorId ()
 
void setAutorId (String autorId)
 
AnnotDocument getSourceDocument ()
 
void setSourceDocument (AnnotDocument sourceDocument)
 
String getNestedIn ()
 
void setNestedIn (String nestedIn)
 
List< AlternativeAttributegetAttributes ()
 
void setAttributes (ArrayList< AlternativeAttribute > attributes)
 
void addAttribute (AlternativeAttribute attribute)
 
List getFragments ()
 
ArrayList< AlternativeFragmentgetFragmentsAL ()
 
void setFragments (ArrayList< AlternativeFragment > fragments)
 
void addFragment (AlternativeFragment fragment)
 
void addSecFragment (SecFragment fragment)
 
Alternative getNestedInAlternative ()
 
void setNestedInAlternative (Alternative nestedInAlternative)
 
Suggestion getAlternativeOfSuggestion ()
 
void setAlternativeOfSuggestion (Suggestion alternativeOfSuggestion)
 
Annotation getNestedInAnnot ()
 
void setNestedInAnnot (Annotation nestedInAnnot)
 
String getSAEntityIdentifier ()
 
void setSAEntityIdentifier (String SAEntityIdentifier)
 
String getTmpId ()
 
void setTmpId (String tmpId)
 
Boolean getUsed ()
 
void setUsed (Boolean used)
 
int hashCode ()
 
boolean equals (Object object)
 
boolean equals (Object object, boolean noLinked)
 
boolean contentEquals (Object obj)
 
boolean contentEquals (Object obj, boolean withCreated, boolean noLinked)
 
boolean contentEqualsForSec (Suggestion other, ArrayList< SuggestionFragment > linearizedFragments, boolean testFragments)
 
String toString ()
 

Private Attributes

Integer id
 
int type
 
Date created
 
String authorIdStr
 
String authorName
 
String authorAddress
 
String source
 
int sourceDocumentId
 
String content
 
Integer confidence
 
String autorId
 
String nestedIn
 
String alternativeOf
 
Boolean used
 
AnnotType annotType
 
AnnotDocument sourceDocument
 
List< AlternativeAttributeattributes
 
List< AlternativeFragmentfragments
 
User user
 
Alternative nestedInAlternative
 
Suggestion alternativeOfSuggestion
 
Annotation nestedInAnnot
 
String SAEntityIdentifier
 
String tmpId
 

Static Private Attributes

static final long serialVersionUID = 1L
 

Detailed Description

Class representing alternative of suggestion.

Class representing alternative of suggestion.

Author
Marek Kopecky

Definition at line 58 of file Alternative.java.

Constructor & Destructor Documentation

cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.Alternative ( )

Constructor

Definition at line 188 of file Alternative.java.

cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.Alternative ( AnnotType  type,
String  content,
String  nestedIn 
)

Constructor

Parameters
typeType of alternative
contentTextual content of alternative
nestedInIf this alternative is nested, then parent alternative, null otherwise

Definition at line 198 of file Alternative.java.

cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.Alternative ( Integer  id,
String  authorIdStr,
String  authorName,
String  authorAddress,
AnnotDocument  sourceDocument,
String  content,
String  nestedIn 
)

Constructor

Parameters
idId of alternative
authorIdStrURI of alternative author (user)
authorNameName of alternative author (user)
authorAddressE-mail of alternative author (user)
sourceDocumentAnnotated copy of document to which this alternative belongs
contentTextual content of alternative
nestedInIf this alternative is nested, then parent alternative, null otherwise

Definition at line 219 of file Alternative.java.

cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.Alternative ( AnnotType  annotType,
Date  created,
String  authorIdStr,
String  authorName,
String  authorAddress,
AnnotDocument  sourceDocument,
String  content 
)

Constructor

Parameters
annotTypeType of alternative
createdDate of creation
authorIdStrURI of alternative author (user)
authorNameName of alternative author (user)
authorAddressE-mail of alternative author (user)
sourceDocumentAnnotated copy of document to which this alternative belongs
contentTextual content of alternative

Definition at line 248 of file Alternative.java.

cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.Alternative ( AnnotType  annotType,
Date  created,
String  authorIdStr,
String  authorName,
String  authorAddress,
AnnotDocument  sourceDocument,
String  content,
Alternative  nestedInAlternative 
)

Constructor

Parameters
annotTypeType of alternative
createdDate of creation
authorIdStrURI of alternative author (user)
authorNameName of alternative author (user)
authorAddressE-mail of alternative author (user)
sourceDocumentAnnotated copy of document to which this alternative belongs
contentTextual content of alternative
nestedInAlternativeIf this alternative is nested, then parent alternative, null otherwise

Definition at line 278 of file Alternative.java.

Member Function Documentation

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.addAttribute ( AlternativeAttribute  attribute)

Adds an attribute to list of alternative attributes

Parameters
attributeAttribute to add

Definition at line 602 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.addFragment ( AlternativeFragment  fragment)

Adds fragment to the list of suggested fragments

Parameters
fragmentSuggested fragment

Definition at line 639 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.addSecFragment ( SecFragment  fragment)

Adds fragment to the list of suggested fragments

Parameters
fragmentSuggested fragment

Implements cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.SecSuggestion.

Definition at line 652 of file Alternative.java.

boolean cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.contentEquals ( Object  obj)

Compares this with other object and returns, whether objects are same type and have same content (id is irelevant). Contents of fragments and attributes are also compared.

Parameters
objObject to compare with
Returns
If object is same type and have same content, returns true, false otherwise

Definition at line 841 of file Alternative.java.

boolean cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.contentEquals ( Object  obj,
boolean  withCreated,
boolean  noLinked 
)

Compares this with other object and returns, whether objects are same type and have same content (id is irrelevant). Contents of fragments and attributes are also compared.

Parameters
objObject to compare with
withCreatedIf true, dates of creation will be compared, if false, dates will be omitted
noLinkedIf true, links in attributes will be omitted, if false, links will be compared
Returns
If object is same type and have same content, returns true, false otherwise

Definition at line 855 of file Alternative.java.

Here is the call graph for this function:

boolean cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.contentEqualsForSec ( Suggestion  other,
ArrayList< SuggestionFragment linearizedFragments,
boolean  testFragments 
)

Compares this with suggestion and returns, whether objects are same type and have same content (id is irrelevant). Contents of fragments and attributes are also compared.

Parameters
otherObject to compare with
linearizedFragmentsLinearized fragments of suggestion.
testFragmentsIf true, fragments will be compared, if false, fragments will be omitted
Returns

Definition at line 963 of file Alternative.java.

Here is the call graph for this function:

Here is the caller graph for this function:

boolean cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.equals ( Object  object)

Compares this with other object and returns, whether objects are same type and have same id.

Parameters
objectObject to compare with
Returns
If object is same type and have same id, returns true, false otherwise

Definition at line 789 of file Alternative.java.

boolean cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.equals ( Object  object,
boolean  noLinked 
)

Compares this with other object and returns, whether objects are same type and have same id, but not go to deeper comparation if noLinek is set to true.

Parameters
objectObject to compare with
noLinkedNo trace links and compare them if is set to true
Returns
If object is same type and have same id, returns true, false otherwise

Definition at line 815 of file Alternative.java.

Suggestion cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getAlternativeOfSuggestion ( )

Gets main suggestion

Returns
Main suggestion

Definition at line 681 of file Alternative.java.

Here is the caller graph for this function:

AnnotType cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getAnnotType ( )

Gets type of alternative

Returns
Returns type of alternative

Definition at line 336 of file Alternative.java.

Here is the caller graph for this function:

List<AlternativeAttribute> cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getAttributes ( )

Gets list of alternative attributes

Returns
Returns list of alternative attributes

Definition at line 584 of file Alternative.java.

Here is the caller graph for this function:

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getAuthorAddress ( )

Gets e-mail of author of alternative (user)

Returns
Returns e-mail of author of alternative (user)

Definition at line 436 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getAuthorIdStr ( )

Gets URI of author of alternative (user)

Returns
Returns URI of author of alternative (user)

Definition at line 400 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getAuthorName ( )

Gets name of author of alternative (user)

Returns
Returns name of author of alternative (user)

Definition at line 418 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getAutorId ( )

Gets id of annotation author (user)

Returns
Returns id of annotation author (user)

Definition at line 526 of file Alternative.java.

Integer cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getConfidence ( )

Gets confidence of alternative

Returns
Returns confidence of alternative

Definition at line 318 of file Alternative.java.

Here is the caller graph for this function:

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getContent ( )

Gets textual content of alternative

Returns
Returns textual content of alternative

Definition at line 508 of file Alternative.java.

Date cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getCreated ( )

Gets date of creation

Returns
Returns date of creation

Definition at line 354 of file Alternative.java.

List cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getFragments ( )

Gets list of suggested fragments

Returns
Returns list of suggested fragments

Implements cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.SecSuggestion.

Definition at line 612 of file Alternative.java.

Here is the caller graph for this function:

ArrayList<AlternativeFragment> cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getFragmentsAL ( )

Gets list of suggested fragments as ArrayList

Returns
Returns list of suggested fragments as ArrayList

Definition at line 621 of file Alternative.java.

Integer cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getId ( )

Gets id of alternative

Returns
Returns id of alternative

Definition at line 301 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getNestedIn ( )

Gets URI of alternative in which is this alternative nested

Returns
Returns URI of alternative in which is this alternative nested

Definition at line 566 of file Alternative.java.

Alternative cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getNestedInAlternative ( )

Gets parent suggestion of nested suggestion

Returns
If this suggestion is nested, returns parent annotation, null otherwise

Definition at line 663 of file Alternative.java.

Annotation cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getNestedInAnnot ( )

Gets annotation in which is this alternative nested

Returns
annotation in which is this alternative nested

Definition at line 699 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getSAEntityIdentifier ( )

Gets SEC API Entity Identifier (to detect same suggestions)

Returns
isFromSECAPI SEC API Entity Identifier

Definition at line 717 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getSource ( )

Gets annotated copy of document to which this alternative belongs

Returns
Returns annotated copy of document to which this alternative belongs

Definition at line 454 of file Alternative.java.

AnnotDocument cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getSourceDocument ( )

Gets annotated copy of document to which this alternative belongs

Returns
Returns annotated copy of document to which this alternative belongs

Definition at line 544 of file Alternative.java.

Integer cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getSourceDocumentId ( )

Gets id of annotated copy of document to which this alternative belongs

Returns
Returns id of annotated copy of document to which this alternative belongs

Definition at line 472 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getTmpId ( )

Gets tmpId of this suggestion (warning - tmpId is in id field for suggestion - this is an auxiliary value)

Returns
Returns tmpId of this suggestion

Definition at line 737 of file Alternative.java.

Here is the caller graph for this function:

Integer cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getType ( )

Gets id of type of alternative

Returns
Returns id of type of alternative

Definition at line 490 of file Alternative.java.

Boolean cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getUsed ( )

Gets whether alternative was used

Returns
Returns whether alternative was used

Definition at line 756 of file Alternative.java.

User cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.getUser ( )

Gets author of alternative (user)

Returns
Returns author of alternative (user)

Definition at line 372 of file Alternative.java.

int cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.hashCode ( )

Get hash code.

Returns
Hash code

Definition at line 775 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setAlternativeOfSuggestion ( Suggestion  alternativeOfSuggestion)

Sets main suggestion

Parameters
alternativeOfSuggestionMain suggestion

Definition at line 690 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setAnnotType ( AnnotType  annotType)

Sets type of alternative

Parameters
annotTypeType of alternative

Definition at line 345 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setAttributes ( ArrayList< AlternativeAttribute attributes)

Sets list of alternative attributes

Parameters
attributesList of alternative attributes

Definition at line 593 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setAuthorAddress ( String  authorAddress)

Sets e-mail of author of alternative (user)

Parameters
authorAddressE-mail of author of alternative (user)

Definition at line 445 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setAuthorIdStr ( String  authorIdStr)

Sets URI of author of alternative (user)

Parameters
authorIdStrURI of author of alternative (user)

Definition at line 409 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setAuthorName ( String  authorName)

Sets name of author of alternative (user)

Parameters
authorNameName of author of alternative (user)

Definition at line 427 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setAutorId ( String  autorId)

Sets id of annotation author (user)

Parameters
autorIdid of annotation author (user)

Definition at line 535 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setConfidence ( Integer  confidence)

Sets confidence of alternative

Parameters
confidenceConfidence of alternative

Definition at line 327 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setContent ( String  content)

Sets textual content of alternative

Parameters
contentTextual content of alternative

Definition at line 517 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setCreated ( Date  created)

Sets date of creation

Parameters
createdDate of creation

Definition at line 363 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setFragments ( ArrayList< AlternativeFragment fragments)

Sets list of suggested fragments

Parameters
fragmentsList of suggested fragments

Definition at line 630 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setId ( Integer  id)

Sets id of alternative

Parameters
idId of alternative

Definition at line 310 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setNestedIn ( String  nestedIn)

Sets URI of alternative in which is this alternative nested

Parameters
nestedInURI of alternative in which is this alternative nested

Definition at line 575 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setNestedInAlternative ( Alternative  nestedInAlternative)

Sets parent suggestion of nested suggestion

Parameters
nestedInAlternativeIf this annotation is nested, then parent annotation, null otherwise

Definition at line 672 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setNestedInAnnot ( Annotation  nestedInAnnot)

Sets annotation in which is this suggestion nested

Parameters
nestedInAnnotAnnotation in which is this suggestion nested

Definition at line 708 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setSAEntityIdentifier ( String  SAEntityIdentifier)

Sets SEC API Entity Identifier

Parameters
SAEntityIdentifierSEC API Entity Identifier

Implements cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.SecSuggestion.

Definition at line 727 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setSource ( String  source)

Sets annotated copy of document to which this alternative belongs

Parameters
sourceAnnotated copy of document to which this alternative belongs

Definition at line 463 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setSourceDocument ( AnnotDocument  sourceDocument)

Sets annotated copy of document to which this alternative belongs (if document is not null, his URI is also set)

Parameters
sourceDocumentAnnotated copy of document to which this alternative belongs

Definition at line 554 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setSourceDocumentId ( Integer  sourceDocumentId)

Sets id of annotated copy of document to which this alternative belongs

Parameters
sourceDocumentIdid of annotated copy of document to which this alternative belongs

Definition at line 481 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setTmpId ( String  tmpId)

Sets tmpId of this suggestion (warning - tmpId is in id field for suggestion - this is an auxiliary value)

Parameters
tmpIdtmpId of this suggestion

Definition at line 747 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setType ( Integer  type)

Sets id of type of alternative

Parameters
typeid of type of alternative

Definition at line 499 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setUsed ( Boolean  used)

Sets whether alternative was used

Parameters
usedIf true, alternative was used, if false, it was not used

Definition at line 765 of file Alternative.java.

void cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.setUser ( User  user)

Sets author of alternative (user) URI is also set and if available, full name and e-mail too

Parameters
userAuthor of alternative (user)

Definition at line 382 of file Alternative.java.

Here is the call graph for this function:

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.toString ( )

Definition at line 1034 of file Alternative.java.

Member Data Documentation

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.alternativeOf
private

Main suggestion

Definition at line 130 of file Alternative.java.

Suggestion cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.alternativeOfSuggestion
private

Id of main suggestion

Definition at line 169 of file Alternative.java.

AnnotType cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.annotType
private

Type of alternative

Definition at line 139 of file Alternative.java.

List<AlternativeAttribute> cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.attributes
private

List of attributes of alternative

Definition at line 149 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.authorAddress
private

E-mail of alternative author (user)

Definition at line 94 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.authorIdStr
private

URI of alternative author (user)

Definition at line 84 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.authorName
private

Name of alternative author (user)

Definition at line 89 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.autorId
private

Id of alternative author (user)

Definition at line 122 of file Alternative.java.

Integer cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.confidence
private

Confidence of suggestion

Definition at line 118 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.content
private

Textual content of alternative

Definition at line 113 of file Alternative.java.

Date cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.created
private

Date of creation

Definition at line 78 of file Alternative.java.

List<AlternativeFragment> cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.fragments
private

List of alternative fragments

Definition at line 154 of file Alternative.java.

Integer cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.id
private

Id of alternative

Definition at line 66 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.nestedIn
private

If this alternative is nested, here is id of parent annotation

Definition at line 126 of file Alternative.java.

Alternative cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.nestedInAlternative
private

If this alternative is nested, here is parent suggestion

Definition at line 164 of file Alternative.java.

Annotation cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.nestedInAnnot
private

If this alternative is nested, here is parent annotation

Definition at line 173 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.SAEntityIdentifier
private

Identifier of entity from SEC API (to detect same suggestions on more places)

Definition at line 178 of file Alternative.java.

final long cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.serialVersionUID = 1L
staticprivate

Definition at line 59 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.source
private

URI of annotated copy of document to which this alternative belongs

Definition at line 101 of file Alternative.java.

AnnotDocument cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.sourceDocument
private

Annotated copy of document to which this alternative belongs

Definition at line 144 of file Alternative.java.

int cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.sourceDocumentId
private

Id of annotated copy of document to which this alternative belongs

Definition at line 107 of file Alternative.java.

String cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.tmpId
private

Temporary id to identify targets of links in alternatives from client

Definition at line 182 of file Alternative.java.

int cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.type
private

Id of type of alternative

Definition at line 72 of file Alternative.java.

Boolean cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.used
private

Was alternative used?

Definition at line 134 of file Alternative.java.

User cz.vutbr.fit.knot.annotations.modules.suggestionManager.alternative.Alternative.user
private

Author of alternative (user)

Definition at line 159 of file Alternative.java.


The documentation for this class was generated from the following file: