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

[1/2] git commit: Add missing documentation about PlasticClassListener

Updated Branches:
  refs/heads/master 3e255abe8 -> 5db421fd2


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/5db421fd
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/5db421fd
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/5db421fd

Branch: refs/heads/master
Commit: 5db421fd25be648cae947b75a2576dab1cd159ee
Parents: a825d2c
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:04 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/5db421fd/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/5db421fd/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/5db421fd/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);