You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2012/06/14 20:51:48 UTC

git commit: Add missing documentation about PlasticClassListener

Updated Branches:
  refs/heads/5.3 2f490ecb4 -> 55ba4e0dd


Add missing documentation about PlasticClassListener


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/55ba4e0d
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/55ba4e0d
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/55ba4e0d

Branch: refs/heads/5.3
Commit: 55ba4e0dd6ad514c42ad010ea3c6fa0746442f61
Parents: 2f490ec
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Thu Jun 14 11:51:04 2012 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Thu Jun 14 11:51:39 2012 -0700

----------------------------------------------------------------------
 .../tapestry5/plastic/PlasticClassEvent.java       |    4 ++--
 .../tapestry5/plastic/PlasticClassListener.java    |    4 ++--
 .../tapestry5/plastic/PlasticClassListenerHub.java |    5 ++++-
 3 files changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/55ba4e0d/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassEvent.java
----------------------------------------------------------------------
diff --git a/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassEvent.java b/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassEvent.java
index e275997..3c0e3df 100644
--- a/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassEvent.java
+++ b/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassEvent.java
@@ -1,4 +1,4 @@
-// Copyright 2011 The Apache Software Foundation
+// Copyright 2011, 2012 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -37,7 +37,7 @@ public interface PlasticClassEvent
     ClassType getType();
 
     /**
-     * The bytecode for the class, dissassembled and formatted as a string. This is useful
+     * The bytecode for the class, disassembled and formatted as a string. This is useful
      * for debugging purposes.
      */
     String getDissasembledBytecode();

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/55ba4e0d/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListener.java
----------------------------------------------------------------------
diff --git a/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListener.java b/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListener.java
index d56df38..58323ed 100644
--- a/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListener.java
+++ b/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListener.java
@@ -1,4 +1,4 @@
-// Copyright 2011 The Apache Software Foundation
+// Copyright 2011, 2012 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -30,7 +30,7 @@ public interface PlasticClassListener
      * the event for the primary class (the class being transformed or created from scratch).
      * 
      * @param event
-     *            describes the class to be loaded, and gives access to its dissasembled
+     *            describes the class to be loaded, and gives access to its disassembled
      *            bytecode (for debugging purposes)
      */
     void classWillLoad(PlasticClassEvent event);

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/55ba4e0d/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListenerHub.java
----------------------------------------------------------------------
diff --git a/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListenerHub.java b/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListenerHub.java
index f82551d..7418e28 100644
--- a/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListenerHub.java
+++ b/plastic/src/main/java/org/apache/tapestry5/plastic/PlasticClassListenerHub.java
@@ -1,4 +1,4 @@
-// Copyright 2011 The Apache Software Foundation
+// Copyright 2011, 2012 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -14,6 +14,9 @@
 
 package org.apache.tapestry5.plastic;
 
+/**
+ * Methods for adding and removing {@link PlasticClassListener}s .
+ */
 public interface PlasticClassListenerHub
 {
     void addPlasticClassListener(PlasticClassListener listener);