| java.lang.Object org.wings.SComponent org.wings.SContainer org.wings.SAnchor org.wings.SPortletAnchor
SPortletAnchor | public class SPortletAnchor extends SAnchor (Code) | | This implementation of a SAnchor exists for the wingSPortletBridge. With the
SPortletAnchor a link equivalent to a javax.portlet.PortletURL can be
created. This link behaves like a SAnchor. Additionally a PortletMode and a
WindowState can be associated with the generated PortletURL. The String
"kind" in the constructors defines if an action or a render PortletURL should
be created.
Also parametes can be asscociated with the PortletURL. This parameters are
automatically encoded with the
PortletParameterCodec See Also: javax.portlet.PortletURL author: Marc Musch |
Constructor Summary | |
public | SPortletAnchor(String kind) | public | SPortletAnchor(String kind, String portletMode) Creates a SPortletAnchor
Parameters: kind - -action or render PortletURL, use the static Strings ACTION_URLor RENDER_URL for this parameter. Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. | public | SPortletAnchor(String kind, String portletMode, String windowState) Creates a SPortletAnchor
Parameters: kind - -action or render PortletURL, use the static Strings ACTION_URLor RENDER_URL for this parameter. Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. | public | SPortletAnchor(String kind, String portletMode, String windowState, Map<String, String[]> parameters) Creates a SPortletAnchor
Parameters: kind - -action or render PortletURL, use the static Strings ACTION_URLor RENDER_URL for this parameter. Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. |
Method Summary | |
public void | setParameter(String name, String value) Adds a single parameter with a single value. | public void | setParameterMap(Map<String, String[]> parameters) Sets the parameters, this method will delete all previous parameters. | public void | setParameters(String name, String[] values) Adds a single parameter with an array of values. | public void | setPortletMode(String portletMode) Sets the Portlet Mode in the PortletURL
Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. | public void | setWindowState(String windowState) Sets the Window State in the PortletURL
Parameters: windowState - -sets the Window State in the PortletURL, use the staticStrings MAXIMIZED_WS, MINIMIZED_WS or NORMAL_WS for thisparameter. |
ACTION_URL | final public static String ACTION_URL(Code) | | String used for the constructor parameter "kind" to generate an action
PortletURL.
|
EDIT_MODE | final public static String EDIT_MODE(Code) | | String used for the parameter "portletMode" to set the
PortletMode edit in the PortletURL
|
HELP_MODE | final public static String HELP_MODE(Code) | | String used for the parameter "portletMode" to set the
PortletMode help in the PortletURL
|
MAXIMIZED_WS | final public static String MAXIMIZED_WS(Code) | | String used for the parameter "windowState" to set the
WindowState maximized in the PortletURL
|
MINIMIZED_WS | final public static String MINIMIZED_WS(Code) | | String used for the parameter "windowState" to set the
WindowState minimized in the PortletURL
|
NORMAL_WS | final public static String NORMAL_WS(Code) | | String used for the parameter "windowState" to set the
WindowState normal in the PortletURL
|
RENDER_URL | final public static String RENDER_URL(Code) | | String used for the constructor parameter "kind" to generate a render
PortletURL.
|
VIEW_MODE | final public static String VIEW_MODE(Code) | | String used for the parameter "portletMode" to set the
PortletMode view in the PortletURL
|
SPortletAnchor | public SPortletAnchor(String kind)(Code) | | Creates a SPortletAnchor
Parameters: kind - -action or render PortletURL, use the static Strings ACTION_URLor RENDER_URL for this parameter. |
SPortletAnchor | public SPortletAnchor(String kind, String portletMode)(Code) | | Creates a SPortletAnchor
Parameters: kind - -action or render PortletURL, use the static Strings ACTION_URLor RENDER_URL for this parameter. Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. If the Portlet Mode isnot supported, no Portlet Mode is set. |
SPortletAnchor | public SPortletAnchor(String kind, String portletMode, String windowState)(Code) | | Creates a SPortletAnchor
Parameters: kind - -action or render PortletURL, use the static Strings ACTION_URLor RENDER_URL for this parameter. Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. If the Portlet Mode isnot supported, no Portlet Mode is set. Parameters: windowState - -sets the Window State in the PortletURL, use the staticStrings MAXIMIZED_WS, MINIMIZED_WS or NORMAL_WS for thisparameter. Also custom Window States can be set. If the WindowState is not supported, no Window State is set. |
SPortletAnchor | public SPortletAnchor(String kind, String portletMode, String windowState, Map<String, String[]> parameters)(Code) | | Creates a SPortletAnchor
Parameters: kind - -action or render PortletURL, use the static Strings ACTION_URLor RENDER_URL for this parameter. Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. If the Portlet Mode isnot supported, no Portlet Mode is set. Parameters: windowState - -sets the Window State in the PortletURL, use the staticStrings MAXIMIZED_WS, MINIMIZED_WS or NORMAL_WS for thisparameter. Also custom Window States can be set. If the WindowState is not supported, no Window State is set. Parameters: parameters - -set a map with parameters in the PortletURL. This parameterswill be automatically encoded with thePortletParameterCodec |
setParameter | public void setParameter(String name, String value)(Code) | | Adds a single parameter with a single value.
Parameters: name - -the name of the parameter, the name will be automaticallyencoded with the PortletParameterCodec Parameters: value - -the value of the parameter |
setParameterMap | public void setParameterMap(Map<String, String[]> parameters)(Code) | | Sets the parameters, this method will delete all previous parameters.
Parameters: parameters - -the parameter map, the names will be automatically encodedwith the PortletParameterCodec |
setParameters | public void setParameters(String name, String[] values)(Code) | | Adds a single parameter with an array of values.
Parameters: name - -the name of the parameter, the name will be automaticallyencoded with the PortletParameterCodec Parameters: values - -the values of the parameter |
setPortletMode | public void setPortletMode(String portletMode)(Code) | | Sets the Portlet Mode in the PortletURL
Parameters: portletMode - -sets the Portlet Mode in the PortletURL, use the staticStrings VIEW_MODE, EDIT_MODE or HELP_MODE for this parameter.Also a custom Portlet Mode can be set. If the Portlet Mode isnot supported, no Portlet Mode is set. |
setWindowState | public void setWindowState(String windowState)(Code) | | Sets the Window State in the PortletURL
Parameters: windowState - -sets the Window State in the PortletURL, use the staticStrings MAXIMIZED_WS, MINIMIZED_WS or NORMAL_WS for thisparameter. Also custom Window States can be set. If the WindowState is not supported, no Window State is set. |
Methods inherited from org.wings.SContainer | public SComponent add(SComponent c)(Code)(Java Doc) public void add(SComponent c, Object constraint)(Code)(Java Doc) public SComponent add(SComponent c, int index)(Code)(Java Doc) public void add(SComponent c, Object constraint, int index)(Code)(Java Doc) public SComponent addComponent(SComponent c)(Code)(Java Doc) public SComponent addComponent(SComponent c, Object constraint)(Code)(Java Doc) public SComponent addComponent(SComponent c, int index)(Code)(Java Doc) public SComponent addComponent(SComponent c, Object constraint, int index)(Code)(Java Doc) public void addContainerListener(SContainerListener l)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public Object clone()(Code)(Java Doc) protected void fireContainerEvent(int type, SComponent comp)(Code)(Java Doc) public SComponent getComponent(int i)(Code)(Java Doc) public int getComponentCount()(Code)(Java Doc) protected ArrayList getComponentList()(Code)(Java Doc) public SComponent[] getComponents()(Code)(Java Doc) public Object getConstraintAt(int i)(Code)(Java Doc) protected ArrayList getConstraintList()(Code)(Java Doc) public SLayoutManager getLayout()(Code)(Java Doc) public void invite(ComponentVisitor visitor) throws Exception(Code)(Java Doc) public void inviteEachComponent(ComponentVisitor visitor) throws Exception(Code)(Java Doc) protected boolean isShowingChildren()(Code)(Java Doc) protected void processContainerEvent(SContainerListener listener, SContainerEvent e)(Code)(Java Doc) public void remove(SComponent c)(Code)(Java Doc) public void remove(int index)(Code)(Java Doc) public void removeAll()(Code)(Java Doc) public void removeContainerListener(SContainerListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public void setCG(ContainerCG cg)(Code)(Java Doc) public void setLayout(SLayoutManager l)(Code)(Java Doc) protected void setParentFrame(SFrame f)(Code)(Java Doc) public void updateCG()(Code)(Java Doc)
|
Methods inherited from org.wings.SComponent | final public void addComponentListener(SComponentListener l)(Code)(Java Doc) public void addDynamicStyle(Style style)(Code)(Java Doc) final protected void addEventListener(Class<T> type, T listener)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) final public void addParentFrameListener(SParentFrameListener l)(Code)(Java Doc) final public void addRenderListener(SRenderListener renderListener)(Code)(Java Doc) final public void addScriptListener(ScriptListener listener)(Code)(Java Doc) public void addStyle(String additionalCssClassName)(Code)(Java Doc) public Object clone()(Code)(Java Doc) protected void fireComponentChangeEvent(SComponentEvent aEvent)(Code)(Java Doc) public void fireFinalEvents()(Code)(Java Doc) protected void fireKeyEvents()(Code)(Java Doc) final public void fireRenderEvent(int type)(Code)(Java Doc) public ActionMap getActionMap()(Code)(Java Doc) public Color getBackground()(Code)(Java Doc) public SBorder getBorder()(Code)(Java Doc) public ComponentCG getCG()(Code)(Java Doc) final public Object getClientProperty(Object key)(Code)(Java Doc) public SPopupMenu getComponentPopupMenu()(Code)(Java Doc) public Style getDynamicStyle(Selector selector)(Code)(Java Doc) public Collection getDynamicStyles()(Code)(Java Doc) public int getFocusTraversalIndex()(Code)(Java Doc) public SFont getFont()(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public int getHorizontalAlignment()(Code)(Java Doc) public InputMap getInputMap()(Code)(Java Doc) public InputMap getInputMap(int condition)(Code)(Java Doc) final protected int getListenerCount(Class type)(Code)(Java Doc) final protected Object[] getListenerList()(Code)(Java Doc) final public EventListener[] getListeners(Class<? extends EventListener> type)(Code)(Java Doc) public String getLowLevelEventId()(Code)(Java Doc) final public String getName()(Code)(Java Doc) final public SContainer getParent()(Code)(Java Doc) public SFrame getParentFrame()(Code)(Java Doc) public SDimension getPreferredSize()(Code)(Java Doc) public RequestURL getRequestURL()(Code)(Java Doc) public boolean getResidesInForm()(Code)(Java Doc) public List<ScriptListener> getScriptListenerList()(Code)(Java Doc) public ScriptListener[] getScriptListeners()(Code)(Java Doc) final public Session getSession()(Code)(Java Doc) public boolean getShowAsFormComponent()(Code)(Java Doc) public String getStyle()(Code)(Java Doc) public String getToolTipText()(Code)(Java Doc) public int getVerticalAlignment()(Code)(Java Doc) public void invite(ComponentVisitor visitor) throws Exception(Code)(Java Doc) protected static boolean isDifferent(Object oldObject, Object newObject)(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isRecursivelyVisible()(Code)(Java Doc) public boolean isReloadForced()(Code)(Java Doc) protected boolean isUpdatePossible()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) protected String paramString()(Code)(Java Doc) protected void processComponentEvent(SComponentListener listener, SComponentEvent e)(Code)(Java Doc) protected boolean processKeyEvents(String[] values)(Code)(Java Doc) protected void processLowLevelEvent(String name, String[] values)(Code)(Java Doc) final public void putClientProperty(Object key, Object value)(Code)(Java Doc) final void register()(Code)(Java Doc) public void reload()(Code)(Java Doc) final protected void reloadIfChange(Object oldVal, Object newVal)(Code)(Java Doc) final protected void reloadIfChange(int oldVal, int newVal)(Code)(Java Doc) final protected void reloadIfChange(boolean oldVal, boolean newVal)(Code)(Java Doc) final protected void reloadIfChange(byte oldVal, byte newVal)(Code)(Java Doc) final protected void reloadIfChange(short oldVal, short newVal)(Code)(Java Doc) final protected void reloadIfChange(long oldVal, long newVal)(Code)(Java Doc) final protected void reloadIfChange(float oldVal, float newVal)(Code)(Java Doc) final protected void reloadIfChange(double oldVal, double newVal)(Code)(Java Doc) final protected void reloadIfChange(char oldVal, char newVal)(Code)(Java Doc) final public void removeComponentListener(SComponentListener l)(Code)(Java Doc) public void removeDynamicStyle(Selector selector)(Code)(Java Doc) final protected void removeEventListener(Class<T> type, T listener)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) final public void removeParentFrameListener(SParentFrameListener l)(Code)(Java Doc) final public void removeRenderListener(SRenderListener renderListener)(Code)(Java Doc) final public void removeScriptListener(ScriptListener listener)(Code)(Java Doc) public void removeStyle(String cssStyleClassName)(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) public void scrollRectToVisible(Rectangle aRect)(Code)(Java Doc) public void setActionMap(ActionMap actionMap)(Code)(Java Doc) public void setAttribute(String cssPropertyName, String value)(Code)(Java Doc) public void setAttribute(CSSProperty property, String propertyValue)(Code)(Java Doc) public void setAttribute(Selector selector, CSSProperty property, String propertyValue)(Code)(Java Doc) public void setAttribute(Selector selector, CSSProperty property, SIcon icon)(Code)(Java Doc) public void setAttribute(Selector selector, CSSProperty property, Color color)(Code)(Java Doc) public void setAttributes(Selector selector, CSSAttributeSet attributes)(Code)(Java Doc) public void setBackground(Color color)(Code)(Java Doc) public void setBorder(SBorder border)(Code)(Java Doc) public void setCG(ComponentCG newCG)(Code)(Java Doc) public void setComponentPopupMenu(SPopupMenu popupMenu)(Code)(Java Doc) public void setDynamicStyles(Collection dynamicStyles)(Code)(Java Doc) public void setEnabled(boolean enabled)(Code)(Java Doc) public void setFocusTraversalIndex(int index)(Code)(Java Doc) public void setFont(SFont font)(Code)(Java Doc) public void setForeground(Color color)(Code)(Java Doc) public void setHorizontalAlignment(int alignment)(Code)(Java Doc) public void setInputMap(InputMap inputMap)(Code)(Java Doc) public void setInputMap(int condition, InputMap inputMap)(Code)(Java Doc) public void setName(String uniqueName)(Code)(Java Doc) public void setNameRaw(String uncheckedName)(Code)(Java Doc) public void setParent(SContainer parent)(Code)(Java Doc) protected void setParentFrame(SFrame parentFrame)(Code)(Java Doc) public void setPreferredSize(SDimension preferredSize)(Code)(Java Doc) public void setReloadForced(boolean forced)(Code)(Java Doc) public void setShowAsFormComponent(boolean showAsFormComponent)(Code)(Java Doc) public void setStyle(String cssClassName)(Code)(Java Doc) public void setToolTipText(String t)(Code)(Java Doc) public void setVerticalAlignment(int alignment)(Code)(Java Doc) public void setVisible(boolean visible)(Code)(Java Doc) public String toString()(Code)(Java Doc) final void unregister()(Code)(Java Doc) public void update(Update update)(Code)(Java Doc) public void updateCG()(Code)(Java Doc) public void write(Device s) throws IOException(Code)(Java Doc)
|
|
|