001package votorola.s.gwt.stage; // Copyright 2012, Michael Allan.  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Votorola Software"), to deal in the Votorola Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicence, and/or sell copies of the Votorola Software, and to permit persons to whom the Votorola Software is furnished to do so, subject to the following conditions: The preceding copyright notice and this permission notice shall be included in all copies or substantial portions of the Votorola Software. THE VOTOROLA SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE VOTOROLA SOFTWARE OR THE USE OR OTHER DEALINGS IN THE VOTOROLA SOFTWARE.
002
003import votorola.a.diff.*;
004import votorola.g.web.gwt.*;
005
006
007/** A theatre page implemented as a JavaScript overlay type.
008  */
009public final class TheatrePageJS extends JavaScriptObjectX implements TheatrePage
010{
011
012
013    protected TheatrePageJS() {} // "precisely one constructor... protected, empty, and no-argument"
014
015
016
017   // - T h e a t r e - P a g e ----------------------------------------------------------
018
019
020    public native String getActorName()
021    /*-{
022        return this.actorName? this.actorName: this.defaultActorName;
023    }-*/;
024
025        public native String getDefaultActorName() /*-{ return this.defaultActorName; }-*/;
026
027
028
029    public native DiffLookJS getDifference()
030    /*-{
031        return this.difference? this.difference: this.defaultDifference;
032    }-*/;
033
034        public native DiffLookJS getDefaultDifference() /*-{ return this.defaultDifference; }-*/;
035
036
037
038    public native MessageJS getMessage() /*-{ return this.message; }-*/;
039
040
041
042    public native String getPollName()
043    /*-{
044        return this.pollName? this.pollName: this.defaultPollName;
045    }-*/;
046
047        public native String getDefaultPollName() /*-{ return this.defaultPollName; }-*/;
048
049
050
051    public native String pageLocation() /*-{ return this.pageLocation; }-*/;
052
053
054}