ezvcard.property
Class SourceDisplayText

java.lang.Object
  extended by ezvcard.property.VCardProperty
      extended by ezvcard.property.SimpleProperty<String>
          extended by ezvcard.property.TextProperty
              extended by ezvcard.property.SourceDisplayText
All Implemented Interfaces:
Comparable<VCardProperty>

public class SourceDisplayText
extends TextProperty

Provides a textual representation of Source.

Code sample

 VCard vcard = new VCard();
 SourceDisplayText name = new SourceDisplayText("My vCard");
 vcard.setSourceDisplayText(name);
 

Property name: NAME

Supported versions: 3.0

Author:
Michael Angstadt

Field Summary
 
Fields inherited from class ezvcard.property.SimpleProperty
value
 
Fields inherited from class ezvcard.property.VCardProperty
group, parameters
 
Constructor Summary
SourceDisplayText(String displayText)
          Creates a source display text property.
 
Method Summary
 Set<VCardVersion> _supportedVersions()
           Gets the vCard versions that support this property.
 
Methods inherited from class ezvcard.property.SimpleProperty
_validate, getValue, setValue
 
Methods inherited from class ezvcard.property.VCardProperty
addParameter, compareTo, getGroup, getParameter, getParameters, getParameters, getSupportedVersions, removeParameter, setGroup, setParameter, setParameters, validate
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SourceDisplayText

public SourceDisplayText(String displayText)
Creates a source display text property.

Parameters:
displayText - the display text
Method Detail

_supportedVersions

public Set<VCardVersion> _supportedVersions()
Description copied from class: VCardProperty

Gets the vCard versions that support this property.

This method should be overridden by child classes if the property does not support all vCard versions. The default implementation of this method returns all vCard versions.

Overrides:
_supportedVersions in class VCardProperty
Returns:
the vCard versions that support this property.


Copyright © 2012-2014 Michael Angstadt. All Rights Reserved.