|
From: <ls...@us...> - 2007-01-04 20:22:32
|
Revision: 2984
http://jnode.svn.sourceforge.net/jnode/?rev=2984&view=rev
Author: lsantha
Date: 2007-01-04 12:22:27 -0800 (Thu, 04 Jan 2007)
Log Message:
-----------
Added support for signature attribute.
Modified Paths:
--------------
trunk/core/src/core/org/jnode/vm/classmgr/VmType.java
Modified: trunk/core/src/core/org/jnode/vm/classmgr/VmType.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/classmgr/VmType.java 2007-01-04 20:22:03 UTC (rev 2983)
+++ trunk/core/src/core/org/jnode/vm/classmgr/VmType.java 2007-01-04 20:22:27 UTC (rev 2984)
@@ -76,6 +76,9 @@
/** The the source file name of this class */
private String sourceFile;
+ /** The the source file name of this class */
+ private String signature;
+
/** All methods and constructors declared in this class */
private VmMethod[] methodTable;
@@ -2323,6 +2326,14 @@
this.sourceFile = sourceFile;
}
+ public String getSignature() {
+ return signature;
+ }
+
+ public void setSignature(String signature) {
+ this.signature = signature;
+ }
+
/**
* Index of the isolated type state. This refers to an int entry.
*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|