You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2008/11/16 11:46:42 UTC

svn commit: r717998 - in /myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component: LinkTagDeclaration.java PageTagDeclaration.java

Author: bommel
Date: Sun Nov 16 02:46:41 2008
New Revision: 717998

URL: http://svn.apache.org/viewvc?rev=717998&view=rev
Log:
minor documentation fixes

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java?rev=717998&r1=717997&r2=717998&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java Sun Nov 16 02:46:41 2008
@@ -45,8 +45,9 @@
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UILinkCommand",
     rendererType = "Link",
-    facets = {@Facet(name = "confirmation",
-        description = "Contains a UIOutput instance with the confirmation message.")})
+    facets = {
+      @Facet(name = "confirmation", description = "Contains a UIOutput instance with the confirmation message."),
+      @Facet(name = "popup", description = "Contains a UIPopup instance.")})
 public interface LinkTagDeclaration extends AbstractCommandTagDeclaration,
     HasIdBindingAndRendered, HasLabelAndAccessKey, IsDisabled, IsInline,
     HasCommandType, HasTarget, HasTip, HasImage, HasMarkup, HasTabIndex {

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java?rev=717998&r1=717997&r2=717998&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java Sun Nov 16 02:46:41 2008
@@ -28,12 +28,8 @@
 import org.apache.myfaces.tobago.taglib.decl.HasLabel;
 import org.apache.myfaces.tobago.taglib.decl.HasState;
 
-/*
- * Date: 30.03.2006
- * Time: 21:57:22
- */
 /**
- * TODO description of page tag
+ * Renders a page element.
  */
 @Tag(name = "page")
 @UIComponentTag(