Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2457 - development/laboratory/users/bseib/DPMLTesting/src/net/dpml/refactorme

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: bseib AT purdue.edu
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2457 - development/laboratory/users/bseib/DPMLTesting/src/net/dpml/refactorme
  • Date: Tue, 03 May 2005 01:10:40 -0400

Author: bseib AT purdue.edu
Date: Tue May 3 01:10:36 2005
New Revision: 2457

Modified:

development/laboratory/users/bseib/DPMLTesting/src/net/dpml/refactorme/Include.java
Log:
added "test" attribute to Includes element per Cameron F.

Modified:
development/laboratory/users/bseib/DPMLTesting/src/net/dpml/refactorme/Include.java
==============================================================================
---
development/laboratory/users/bseib/DPMLTesting/src/net/dpml/refactorme/Include.java
(original)
+++
development/laboratory/users/bseib/DPMLTesting/src/net/dpml/refactorme/Include.java
Tue May 3 01:10:36 2005
@@ -31,6 +31,7 @@
private String key;
private boolean build;
private boolean runtime;
+ private boolean test;

static public Include create(XMLElement xml)
{
@@ -38,6 +39,7 @@
Include include = new Include(key);

include.setBuild(xml.getBooleanAttribute("build","true","false",false));

include.setRuntime(xml.getBooleanAttribute("runtime","true","false",false));
+
include.setRuntime(xml.getBooleanAttribute("test","true","false",false));
return include;
}

@@ -93,4 +95,18 @@
{
this.runtime = runtime;
}
+ /**
+ * @return Returns the test.
+ */
+ public boolean isTest()
+ {
+ return test;
+ }
+ /**
+ * @param test The test to set.
+ */
+ public void setTest(boolean test)
+ {
+ this.test = test;
+ }
}



  • svn commit: r2457 - development/laboratory/users/bseib/DPMLTesting/src/net/dpml/refactorme, bseib, 05/02/2005

Archive powered by MHonArc 2.6.24.

Top of Page