GWT 2.1.1

com.google.gwt.core.ext.soyc
Interface Story

All Superinterfaces:
java.io.Serializable

public interface Story
extends java.io.Serializable

Represents a (possibly disjoint) region of the JavaScript output for which metadata is available.


Nested Class Summary
static interface Story.Origin
          Describes the physical or virtual source location from which a Story originated.
 
Method Summary
 java.lang.String getLiteralTypeName()
          If the Story represents a literal value, this method will return a description of the type of literal.
 java.util.SortedSet<Member> getMembers()
          Gets the Members of the compilation that the Story is about.
 java.util.Set<Story.Origin> getSourceOrigin()
          Returns the locations of the Story's source.
 

Method Detail

getLiteralTypeName

java.lang.String getLiteralTypeName()
If the Story represents a literal value, this method will return a description of the type of literal. If the Story does not represent a literal, this method will return null.


getMembers

java.util.SortedSet<Member> getMembers()
Gets the Members of the compilation that the Story is about.


getSourceOrigin

java.util.Set<Story.Origin> getSourceOrigin()
Returns the locations of the Story's source. Identical structures (such as string literals) that appear in multiple locations in the source may be merged by the compiler into a single Story.


GWT 2.1.1