Changeset 432


Ignore:
Timestamp:
02/10/12 11:04:15 (12 years ago)
Author:
davidb
Message:

Field "upgraded" to protected so it can be accessed from the new WebBrowser interactive widget.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/widgets/InteractiveWidget.java

    r400 r432  
    3434
    3535/**
    36  * The bridge between swing space and expeditee space
     36 * The bridge between swing space and Expeditee space
    3737 *
    3838 * @author Brook
     
    6464        // The Expeditee item that is used for saving widget state in expiditee
    6565        // world
    66         private Text _textRepresentation;
     66        protected Text _textRepresentation;
    6767
    6868        protected final static Color FREESPACE_BACKCOLOR = new Color(100, 100, 100);
     
    207207                InteractiveWidget inst = null;
    208208                try {
    209                         // Instantainiate the widget - passing the params
     209                        // Instantiate the widget - passing the params
    210210                        Class parameterTypes[] = new Class[] { Text.class, String[].class };
    211211                        Constructor ct = iwclass.getConstructor(parameterTypes);
     
    420420        protected InteractiveWidget(Text source, JComponent component,
    421421                        int minWidth, int maxWidth, int minHeight, int maxHeight) {
     422
    422423
    423424                if (component == null)
Note: See TracChangeset for help on using the changeset viewer.