]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed deprecated code that was left in Window when Root was created
authorLeif Åstrand <leif@vaadin.com>
Fri, 4 Nov 2011 08:19:27 +0000 (10:19 +0200)
committerLeif Åstrand <leif@vaadin.com>
Fri, 4 Nov 2011 08:19:27 +0000 (10:19 +0200)
src/com/vaadin/Application.java
src/com/vaadin/ui/Window.java

index 9fbd9a2fee32d98249ec609ce3d460d28d03aa4b..33bfa7c509902ad2cf809064ccc43ee94a384320 100644 (file)
@@ -99,12 +99,6 @@ public abstract class Application implements URIHandler,
     private final static Logger logger = Logger.getLogger(Application.class
             .getName());
 
-    // /**
-    // * Id use for the next window that is opened. Access to this must be
-    // * synchronized.
-    // */
-    // private int nextWindowId = 1;
-
     /**
      * Application context the application is running in.
      */
@@ -115,27 +109,11 @@ public abstract class Application implements URIHandler,
      */
     private Object user;
 
-    // /**
-    // * Mapping from window name to window instance.
-    // */
-    // private final Hashtable<String, Window> windows = new Hashtable<String,
-    // Window>();
-
-    // /**
-    // * Main window of the application.
-    // */
-    // private Window mainWindow = null;
-
     /**
      * The application's URL.
      */
     private URL applicationUrl;
 
-    // /**
-    // * Name of the theme currently used by the application.
-    // */
-    // private String theme = null;
-
     /**
      * Application status.
      */
@@ -156,16 +134,6 @@ public abstract class Application implements URIHandler,
      */
     private LinkedList<UserChangeListener> userChangeListeners = null;
 
-    // /**
-    // * Window attach listeners.
-    // */
-    // private LinkedList<WindowAttachListener> windowAttachListeners = null;
-    //
-    // /**
-    // * Window detach listeners.
-    // */
-    // private LinkedList<WindowDetachListener> windowDetachListeners = null;
-
     /**
      * Application resource mapping: key <-> resource.
      */
@@ -195,253 +163,6 @@ public abstract class Application implements URIHandler,
 
     private Collection<RequestHandler> requestHandlers = new ArrayList<RequestHandler>();
 
-    // /**
-    // * <p>
-    // * Gets a window by name. Returns <code>null</code> if the application is
-    // * not running or it does not contain a window corresponding to the name.
-    // * </p>
-    // *
-    // * <p>
-    // * All windows can be referenced by their names in url
-    // * <code>http://host:port/foo/bar/</code> where
-    // * <code>http://host:port/foo/</code> is the application url as returned
-    // by
-    // * getURL() and <code>bar</code> is the name of the window.
-    // * </p>
-    // *
-    // * <p>
-    // * One should note that this method can, as a side effect create new
-    // windows
-    // * if needed by the application. This can be achieved by overriding the
-    // * default implementation.
-    // * </p>
-    // *
-    // * <p>
-    // * If for some reason user opens another window with same url that is
-    // * already open, name is modified by adding "_12345678" postfix to the
-    // name,
-    // * where 12345678 is a random number. One can decide to create another
-    // * window-object for those windows (recommended) or to discard the
-    // postfix.
-    // * If the user has two browser windows pointing to the same window-object
-    // on
-    // * server, synchronization errors are likely to occur.
-    // * </p>
-    // *
-    // * <p>
-    // * If no browser-level windowing is used, all defaults are fine and this
-    // * method can be left as is. In case browser-level windows are needed, it
-    // is
-    // * recommended to create new window-objects on this method from their
-    // names
-    // * if the super.getWindow() does not find existing windows. See below for
-    // * implementation example: <code><pre>
-    // // If we already have the requested window, use it
-    // Window w = super.getWindow(name);
-    // if (w == null) {
-    // // If no window found, create it
-    // w = new Window(name);
-    // // set windows name to the one requested
-    // w.setName(name);
-    // // add it to this application
-    // addWindow(w);
-    // // ensure use of window specific url
-    // w.open(new ExternalResource(w.getURL().toString()));
-    // // add some content
-    // w.addComponent(new Label("Test window"));
-    // }
-    // return w;</pre></code>
-    // * </p>
-    // *
-    // * <p>
-    // * <strong>Note</strong> that all returned Window objects must be added to
-    // * this application instance.
-    // *
-    // * <p>
-    // * The method should return null if the window does not exists (and is not
-    // * created as a side-effect) or if the application is not running anymore.
-    // * </p>
-    // *
-    // * @param name
-    // * the name of the window.
-    // * @return the window associated with the given URI or <code>null</code>
-    // */
-    // public Window getWindow(String name) {
-    //
-    // // For closed app, do not give any windows
-    // if (!isRunning()) {
-    // return null;
-    // }
-    //
-    // // Gets the window by name
-    // final Window window = windows.get(name);
-    //
-    // return window;
-    // }
-
-    // /**
-    // * Adds a new window to the application.
-    // *
-    // * <p>
-    // * This implicitly invokes the
-    // * {@link com.vaadin.ui.Window#setApplication(Application)} method.
-    // * </p>
-    // *
-    // * <p>
-    // * Note that all application-level windows can be accessed by their names
-    // in
-    // * url <code>http://host:port/foo/bar/</code> where
-    // * <code>http://host:port/foo/</code> is the application url as returned
-    // by
-    // * getURL() and <code>bar</code> is the name of the window. Also note that
-    // * not all windows should be added to application - one can also add
-    // windows
-    // * inside other windows - these windows show as smaller windows inside
-    // those
-    // * windows.
-    // * </p>
-    // *
-    // * @param window
-    // * the new <code>Window</code> to add. If the name of the window
-    // * is <code>null</code>, an unique name is automatically given
-    // * for the window.
-    // * @throws IllegalArgumentException
-    // * if a window with the same name as the new window already
-    // * exists in the application.
-    // * @throws NullPointerException
-    // * if the given <code>Window</code> is <code>null</code>.
-    // */
-    // public void addWindow(Window window) throws IllegalArgumentException,
-    // NullPointerException {
-    //
-    // // Nulls can not be added to application
-    // if (window == null) {
-    // return;
-    // }
-    //
-    // // Check that one is not adding a sub-window to application
-    // if (window.getParent() != null) {
-    // throw new IllegalArgumentException(
-    // "Window was already added inside another window"
-    // + " - it can not be added to application also.");
-    // }
-    //
-    // // Gets the naming proposal from window
-    // String name = window.getName();
-    //
-    // // Checks that the application does not already contain
-    // // window having the same name
-    // if (name != null && windows.containsKey(name)) {
-    //
-    // // If the window is already added
-    // if (window == windows.get(name)) {
-    // return;
-    // }
-    //
-    // // Otherwise complain
-    // throw new IllegalArgumentException("Window with name '"
-    // + window.getName()
-    // + "' is already present in the application");
-    // }
-    //
-    // // If the name of the window is null, the window is automatically named
-    // if (name == null) {
-    // boolean accepted = false;
-    // while (!accepted) {
-    //
-    // // Try another name
-    // synchronized (this) {
-    // name = String.valueOf(nextWindowId);
-    // nextWindowId++;
-    // }
-    //
-    // if (!windows.containsKey(name)) {
-    // accepted = true;
-    // }
-    // }
-    // window.setName(name);
-    // }
-    //
-    // // Adds the window to application
-    // windows.put(name, window);
-    // window.setApplication(this);
-    //
-    // fireWindowAttachEvent(window);
-    //
-    // // If no main window is set, declare the window to be main window
-    // if (getMainWindow() == null) {
-    // mainWindow = window;
-    // }
-    // }
-
-    // /**
-    // * Send information to all listeners about new Windows associated with
-    // this
-    // * application.
-    // *
-    // * @param window
-    // */
-    // private void fireWindowAttachEvent(Window window) {
-    // // Fires the window attach event
-    // if (windowAttachListeners != null) {
-    // final Object[] listeners = windowAttachListeners.toArray();
-    // final WindowAttachEvent event = new WindowAttachEvent(window);
-    // for (int i = 0; i < listeners.length; i++) {
-    // ((WindowAttachListener) listeners[i]).windowAttached(event);
-    // }
-    // }
-    // }
-
-    // /**
-    // * Removes the specified window from the application.
-    // *
-    // * <p>
-    // * Removing the main window of the Application also sets the main window
-    // to
-    // * null. One must another window to be the main window after this with
-    // * {@link #setMainWindow(Window)}.
-    // * </p>
-    // *
-    // * <p>
-    // * Note that removing window from the application does not close the
-    // browser
-    // * window - the window is only removed from the server-side.
-    // * </p>
-    // *
-    // * @param window
-    // * the window to be removed.
-    // */
-    // public void removeWindow(Window window) {
-    // if (window != null && windows.contains(window)) {
-    //
-    // // Removes the window from application
-    // windows.remove(window.getName());
-    //
-    // // If the window was main window, clear it
-    // if (getMainWindow() == window) {
-    // setMainWindow(null);
-    // }
-    //
-    // // Removes the application from window
-    // if (window.getApplication() == this) {
-    // window.setApplication(null);
-    // }
-    //
-    // fireWindowDetachEvent(window);
-    // }
-    // }
-
-    // private void fireWindowDetachEvent(Window window) {
-    // // Fires the window detach event
-    // if (windowDetachListeners != null) {
-    // final Object[] listeners = windowDetachListeners.toArray();
-    // final WindowDetachEvent event = new WindowDetachEvent(window);
-    // for (int i = 0; i < listeners.length; i++) {
-    // ((WindowDetachListener) listeners[i]).windowDetached(event);
-    // }
-    // }
-    // }
-
     /**
      * Gets the user of the application.
      * 
@@ -580,19 +301,6 @@ public abstract class Application implements URIHandler,
         return applicationIsRunning;
     }
 
-    // /**
-    // * Gets the set of windows contained by the application.
-    // *
-    // * <p>
-    // * Note that the returned set of windows can not be modified.
-    // * </p>
-    // *
-    // * @return the Unmodifiable collection of windows.
-    // */
-    // public Collection<Window> getWindows() {
-    // return Collections.unmodifiableCollection(windows.values());
-    // }
-
     /**
      * <p>
      * Main initializer of the application. The <code>init</code> method is
@@ -603,88 +311,6 @@ public abstract class Application implements URIHandler,
      */
     public abstract void init();
 
-    // /**
-    // * Gets the application's theme. The application's theme is the default
-    // * theme used by all the windows in it that do not explicitly specify a
-    // * theme. If the application theme is not explicitly set, the
-    // * <code>null</code> is returned.
-    // *
-    // * @return the name of the application's theme.
-    // */
-    // public String getTheme() {
-    // return theme;
-    // }
-
-    // /**
-    // * Sets the application's theme.
-    // * <p>
-    // * Note that this theme can be overridden in the the application level
-    // * windows with {@link com.vaadin.ui.Window#setTheme(String)}. Setting
-    // theme
-    // * to be <code>null</code> selects the default theme. For the available
-    // * theme names, see the contents of the VAADIN/themes directory.
-    // * </p>
-    // *
-    // * @param theme
-    // * the new theme for this application.
-    // */
-    // public void setTheme(String theme) {
-    // // Collect list of windows not having the current or future theme
-    // final LinkedList<Window> toBeUpdated = new LinkedList<Window>();
-    // final String oldAppTheme = getTheme();
-    // for (final Iterator<Window> i = getWindows().iterator(); i.hasNext();) {
-    // final Window w = i.next();
-    // final String windowTheme = w.getTheme();
-    // if ((windowTheme == null)
-    // || (!windowTheme.equals(theme) && windowTheme
-    // .equals(oldAppTheme))) {
-    // toBeUpdated.add(w);
-    // }
-    // }
-    //
-    // // Updates the theme
-    // this.theme = theme;
-    //
-    // // Ask windows to update themselves
-    // for (final Iterator<Window> i = toBeUpdated.iterator(); i.hasNext();) {
-    // i.next().requestRepaint();
-    // }
-    // }
-
-    // /**
-    // * Gets the mainWindow of the application.
-    // *
-    // * <p>
-    // * The main window is the window attached to the application URL (
-    // * {@link #getURL()}) and thus which is show by default to the user.
-    // * </p>
-    // * <p>
-    // * Note that each application must have at least one main window.
-    // * </p>
-    // *
-    // * @return the main window.
-    // */
-    // public Window getMainWindow() {
-    // return mainWindow;
-    // }
-
-    // /**
-    // * <p>
-    // * Sets the mainWindow. If the main window is not explicitly set, the main
-    // * window defaults to first created window. Setting window as a main
-    // window
-    // * of this application also adds the window to this application.
-    // * </p>
-    // *
-    // * @param mainWindow
-    // * the mainWindow to set.
-    // */
-    // public void setMainWindow(Window mainWindow) {
-    //
-    // addWindow(mainWindow);
-    // this.mainWindow = mainWindow;
-    // }
-
     /**
      * Returns an enumeration of all the names in this application.
      * 
@@ -1083,68 +709,6 @@ public abstract class Application implements URIHandler,
         public void windowDetached(WindowDetachEvent event);
     }
 
-    // /**
-    // * Adds the window attach listener.
-    // *
-    // * Use this to get notifications each time a window is attached to the
-    // * application with {@link #addWindow(Window)}.
-    // *
-    // * @param listener
-    // * the window attach listener to add.
-    // */
-    // public void addListener(WindowAttachListener listener) {
-    // if (windowAttachListeners == null) {
-    // windowAttachListeners = new LinkedList<WindowAttachListener>();
-    // }
-    // windowAttachListeners.add(listener);
-    // }
-
-    // /**
-    // * Adds the window detach listener.
-    // *
-    // * Use this to get notifications each time a window is remove from the
-    // * application with {@link #removeWindow(Window)}.
-    // *
-    // * @param listener
-    // * the window detach listener to add.
-    // */
-    // public void addListener(WindowDetachListener listener) {
-    // if (windowDetachListeners == null) {
-    // windowDetachListeners = new LinkedList<WindowDetachListener>();
-    // }
-    // windowDetachListeners.add(listener);
-    // }
-
-    // /**
-    // * Removes the window attach listener.
-    // *
-    // * @param listener
-    // * the window attach listener to remove.
-    // */
-    // public void removeListener(WindowAttachListener listener) {
-    // if (windowAttachListeners != null) {
-    // windowAttachListeners.remove(listener);
-    // if (windowAttachListeners.isEmpty()) {
-    // windowAttachListeners = null;
-    // }
-    // }
-    // }
-
-    // /**
-    // * Removes the window detach listener.
-    // *
-    // * @param listener
-    // * the window detach listener to remove.
-    // */
-    // public void removeListener(WindowDetachListener listener) {
-    // if (windowDetachListeners != null) {
-    // windowDetachListeners.remove(listener);
-    // if (windowDetachListeners.isEmpty()) {
-    // windowDetachListeners = null;
-    // }
-    // }
-    // }
-
     /**
      * Returns the URL user is redirected to on application close. If the URL is
      * <code>null</code>, the application is closed normally as defined by the
index f62ab28c85e428a1493c8a5f2b9cdf6db194dfef..8bd5d4b3ef96019fbd2c95663d8019104de25178 100644 (file)
@@ -93,37 +93,6 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier {
      */
     public static final int BORDER_DEFAULT = 2;
 
-    // /**
-    // * <b>Application window only</b>. List of URI handlers for this window.
-    // */
-    // private LinkedList<URIHandler> uriHandlerList = null;
-    //
-    // /**
-    // * <b>Application window only</b>. List of parameter handlers for this
-    // * window.
-    // */
-    // private LinkedList<ParameterHandler> parameterHandlerList = null;
-    //
-    // /**
-    // * <b>Application window only</b>. Resources to be opened automatically on
-    // * next repaint. The list is automatically cleared when it has been sent
-    // to
-    // * the client.
-    // */
-    // private final LinkedList<OpenResource> openList = new
-    // LinkedList<OpenResource>();
-    //
-    // /**
-    // * <b>Application window only</b>. Unique name of the window used to
-    // * identify it.
-    // */
-    // private String name = null;
-    //
-    // /**
-    // * <b>Application window only.</b> Border mode of the Window.
-    // */
-    // private int border = BORDER_DEFAULT;
-
     /**
      * <b>Sub window only</b>. Top offset in pixels for the sub window (relative
      * to the parent application window) or -1 if unspecified.
@@ -211,181 +180,6 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier {
 
     /* ********************************************************************* */
 
-    // /**
-    // * <b>Application window only</b>. Adds a new URI handler to this window.
-    // If
-    // * this is a sub window the URI handler is attached to the parent
-    // * application window.
-    // *
-    // * @param handler
-    // * the URI handler to add.
-    // */
-    // public void addURIHandler(URIHandler handler) {
-    // if (getParent() != null) {
-    // // this is subwindow, attach to main level instead
-    // // TODO hold internal list also and remove on detach
-    // Window mainWindow = getParent();
-    // mainWindow.addURIHandler(handler);
-    // } else {
-    // if (uriHandlerList == null) {
-    // uriHandlerList = new LinkedList<URIHandler>();
-    // }
-    // synchronized (uriHandlerList) {
-    // if (!uriHandlerList.contains(handler)) {
-    // uriHandlerList.addLast(handler);
-    // }
-    // }
-    // }
-    // }
-
-    // /**
-    // * <b>Application window only</b>. Removes the URI handler from this
-    // window.
-    // * If this is a sub window the URI handler is removed from the parent
-    // * application window.
-    // *
-    // * @param handler
-    // * the URI handler to remove.
-    // */
-    // public void removeURIHandler(URIHandler handler) {
-    // if (getParent() != null) {
-    // // this is subwindow
-    // Window mainWindow = getParent();
-    // mainWindow.removeURIHandler(handler);
-    // } else {
-    // if (handler == null || uriHandlerList == null) {
-    // return;
-    // }
-    // synchronized (uriHandlerList) {
-    // uriHandlerList.remove(handler);
-    // if (uriHandlerList.isEmpty()) {
-    // uriHandlerList = null;
-    // }
-    // }
-    // }
-    // }
-
-    // /**
-    // * <b>Application window only</b>. Handles an URI by passing the URI to
-    // all
-    // * URI handlers defined using {@link #addURIHandler(URIHandler)}. All URI
-    // * handlers are called for each URI but no more than one handler may
-    // return
-    // * a {@link DownloadStream}. If more than one stream is returned a
-    // * {@code RuntimeException} is thrown.
-    // *
-    // * @param context
-    // * The URL of the application
-    // * @param relativeUri
-    // * The URI relative to {@code context}
-    // * @return A {@code DownloadStream} that one of the URI handlers returned,
-    // * null if no {@code DownloadStream} was returned.
-    // */
-    // public DownloadStream handleURI(URL context, String relativeUri) {
-    //
-    // DownloadStream result = null;
-    // if (uriHandlerList != null) {
-    // Object[] handlers;
-    // synchronized (uriHandlerList) {
-    // handlers = uriHandlerList.toArray();
-    // }
-    // for (int i = 0; i < handlers.length; i++) {
-    // final DownloadStream ds = ((URIHandler) handlers[i]).handleURI(
-    // context, relativeUri);
-    // if (ds != null) {
-    // if (result != null) {
-    // throw new RuntimeException("handleURI for " + context
-    // + " uri: '" + relativeUri
-    // + "' returns ambigious result.");
-    // }
-    // result = ds;
-    // }
-    // }
-    // }
-    // return result;
-    // }
-
-    /* ********************************************************************* */
-
-    // /**
-    // * <b>Application window only</b>. Adds a new parameter handler to this
-    // * window. If this is a sub window the parameter handler is attached to
-    // the
-    // * parent application window.
-    // *
-    // * @param handler
-    // * the parameter handler to add.
-    // */
-    // public void addParameterHandler(ParameterHandler handler) {
-    // if (getParent() != null) {
-    // // this is subwindow
-    // // TODO hold internal list also and remove on detach
-    // Window mainWindow = getParent();
-    // mainWindow.addParameterHandler(handler);
-    // } else {
-    // if (parameterHandlerList == null) {
-    // parameterHandlerList = new LinkedList<ParameterHandler>();
-    // }
-    // synchronized (parameterHandlerList) {
-    // if (!parameterHandlerList.contains(handler)) {
-    // parameterHandlerList.addLast(handler);
-    // }
-    // }
-    // }
-    //
-    // }
-
-    // /**
-    // * <b>Application window only</b>. Removes the parameter handler from this
-    // * window. If this is a sub window the parameter handler is removed from
-    // the
-    // * parent application window.
-    // *
-    // * @param handler
-    // * the parameter handler to remove.
-    // */
-    // public void removeParameterHandler(ParameterHandler handler) {
-    // if (getParent() != null) {
-    // // this is subwindow
-    // Window mainWindow = getParent();
-    // mainWindow.removeParameterHandler(handler);
-    // } else {
-    // if (handler == null || parameterHandlerList == null) {
-    // return;
-    // }
-    // synchronized (parameterHandlerList) {
-    // parameterHandlerList.remove(handler);
-    // if (parameterHandlerList.isEmpty()) {
-    // parameterHandlerList = null;
-    // }
-    // }
-    // }
-    // }
-
-    // /**
-    // * <b>Application window only</b>. Handles parameters by passing the
-    // * parameters to all {@code ParameterHandler}s defined using
-    // * {@link #addParameterHandler(ParameterHandler)}. All
-    // * {@code ParameterHandler}s are called for each set of parameters.
-    // *
-    // * @param parameters
-    // * a map containing the parameter names and values
-    // * @see ParameterHandler#handleParameters(Map)
-    // */
-    // public void handleParameters(Map<String, String[]> parameters) {
-    // if (parameterHandlerList != null) {
-    // Object[] handlers;
-    // synchronized (parameterHandlerList) {
-    // handlers = parameterHandlerList.toArray();
-    // }
-    // for (int i = 0; i < handlers.length; i++) {
-    // ((ParameterHandler) handlers[i]).handleParameters(parameters);
-    // }
-    // }
-    // }
-
-    /* ********************************************************************* */
-
     /*
      * (non-Javadoc)
      * 
@@ -395,10 +189,6 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier {
     public synchronized void paintContent(PaintTarget target)
             throws PaintException {
 
-        // Sets the window name
-        // final String name = getName();
-        // target.addAttribute("name", name == null ? "" : name);
-
         if (modal) {
             target.addAttribute("modal", true);
         }
@@ -425,12 +215,6 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier {
             centerRequested = false;
         }
 
-        // Marks the main window
-        // if (getApplication() != null
-        // && this == getApplication().getMainWindow()) {
-        // target.addAttribute("main", true);
-        // }
-
         if (getContent() != null) {
             if (getContent().getHeightUnits() == Sizeable.UNITS_PERCENTAGE) {
                 target.addAttribute("layoutRelativeHeight", true);
@@ -565,120 +349,6 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier {
     // requestRepaint();
     // }
 
-    /* ********************************************************************* */
-
-    // /**
-    // * Gets the full URL of the window. The returned URL is window specific
-    // and
-    // * can be used to directly refer to the window.
-    // * <p>
-    // * Note! This method can not be used for portlets.
-    // * </p>
-    // *
-    // * @return the URL of the window or null if the window is not attached to
-    // an
-    // * application
-    // */
-    // public URL getURL() {
-    //
-    // if (application == null) {
-    // return null;
-    // }
-    //
-    // try {
-    // return new URL(application.getURL(), getName() + "/");
-    // } catch (final MalformedURLException e) {
-    // throw new RuntimeException(
-    // "Internal problem getting window URL, please report");
-    // }
-    // }
-
-    // /**
-    // * <b>Application window only</b>. Gets the unique name of the window. The
-    // * name of the window is used to uniquely identify it.
-    // * <p>
-    // * The name also determines the URL that can be used for direct access to
-    // a
-    // * window. All windows can be accessed through
-    // * {@code http://host:port/app/win} where {@code http://host:port/app} is
-    // * the application URL (as returned by {@link Application#getURL()} and
-    // * {@code win} is the window name.
-    // * </p>
-    // * <p>
-    // * Note! Portlets do not support direct window access through URLs.
-    // * </p>
-    // *
-    // * @return the Name of the Window.
-    // */
-    // public String getName() {
-    // return name;
-    // }
-
-    // /**
-    // * Returns the border style of the window.
-    // *
-    // * @see #setBorder(int)
-    // * @return the border style for the window
-    // */
-    // public int getBorder() {
-    // return border;
-    // }
-
-    // /**
-    // * Sets the border style for this window. Valid values are
-    // * {@link Window#BORDER_NONE}, {@link Window#BORDER_MINIMAL},
-    // * {@link Window#BORDER_DEFAULT}.
-    // * <p>
-    // * <b>Note!</b> Setting this seems to currently have no effect whatsoever
-    // on
-    // * the window.
-    // * </p>
-    // *
-    // * @param border
-    // * the border style to set
-    // */
-    // public void setBorder(int border) {
-    // this.border = border;
-    // }
-
-    // /**
-    // * <b>Application window only</b>. Sets the unique name of the window. The
-    // * name of the window is used to uniquely identify it inside the
-    // * application.
-    // * <p>
-    // * The name also determines the URL that can be used for direct access to
-    // a
-    // * window. All windows can be accessed through
-    // * {@code http://host:port/app/win} where {@code http://host:port/app} is
-    // * the application URL (as returned by {@link Application#getURL()} and
-    // * {@code win} is the window name.
-    // * </p>
-    // * <p>
-    // * This method can only be called before the window is added to an
-    // * application.
-    // * </p>
-    // * <p>
-    // * Note! Portlets do not support direct window access through URLs.
-    // * </p>
-    // *
-    // * @param name
-    // * the new name for the window or null if the application should
-    // * automatically assign a name to it
-    // * @throws IllegalStateException
-    // * if the window is attached to an application
-    // */
-    // public void setName(String name) throws IllegalStateException {
-    //
-    // // The name can not be changed in application
-    // if (getApplication() != null) {
-    // throw new IllegalStateException(
-    // "Window name can not be changed while "
-    // + "the window is in application");
-    // }
-    //
-    // this.name = name;
-    // }
-
     // /**
     // * Private class for storing properties related to opening resources.
     // */