Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2697 - in development/laboratory/ide/common: . magic/src/main/net/dpml/ide/common/magic

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: peter AT neubauer.se
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2697 - in development/laboratory/ide/common: . magic/src/main/net/dpml/ide/common/magic
  • Date: Fri, 03 Jun 2005 17:52:39 -0400

Author: peter AT neubauer.se
Date: Fri Jun 3 17:52:39 2005
New Revision: 2697

Modified:
development/laboratory/ide/common/index.xml

development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDefinition.java

development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDependency.java

development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeProjectDefinition.java

development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeResourceDefinition.java
Log:
locking on metro 2579


Modified: development/laboratory/ide/common/index.xml
==============================================================================
--- development/laboratory/ide/common/index.xml (original)
+++ development/laboratory/ide/common/index.xml Fri Jun 3 17:52:39 2005
@@ -18,8 +18,8 @@

<index key="dpml-ide-common">

- <import uri="artifact:module:dpml/transit/dpml-transit#SNAPSHOT"/>
- <import uri="artifact:module:dpml/magic/dpml-magic#SNAPSHOT"/>
+ <import uri="artifact:module:dpml/transit/dpml-transit#2579"/>
+ <import uri="artifact:module:dpml/magic/dpml-magic#2579"/>

<project file="module.xml">
<info>

Modified:
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDefinition.java
==============================================================================
---
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDefinition.java
(original)
+++
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDefinition.java
Fri Jun 3 17:52:39 2005
@@ -26,7 +26,7 @@
*/
public abstract class IdeDefinition {

- private final String group;
+ private final String m_group;
private final String name;
private final String version;
private final Map dependencies = new HashMap();
@@ -34,10 +34,10 @@
/**
* Create a new definition.
*/
- protected IdeDefinition(String group, String name, String version) {
- this.group = group;
- this.name = name;
- this.version = version;
+ protected IdeDefinition(String group, String iName, String iVersion) {
+ this.m_group = group;
+ this.name = iName;
+ this.version = iVersion;
}

public boolean equals(Object other) {
@@ -54,7 +54,7 @@
}

public String getGroup() {
- return group;
+ return m_group;
}

public String getName() {

Modified:
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDependency.java
==============================================================================
---
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDependency.java
(original)
+++
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeDependency.java
Fri Jun 3 17:52:39 2005
@@ -22,29 +22,29 @@
*/
public class IdeDependency {

- private final String key;
- private final boolean projectDependency;
- private boolean buildEnabled;
- private boolean testEnabled;
- private boolean runtimeEnabled;
- private boolean indirect;
+ private final String m_key;
+ private final boolean m_projectDependency;
+ private boolean m_buildEnabled;
+ private boolean m_testEnabled;
+ private boolean m_runtimeEnabled;
+ private boolean m_indirect;

public IdeDependency(String key) {
this(key, false);
}

public IdeDependency(String key, boolean projectDependency) {
- this.key = key;
- this.projectDependency = projectDependency;
+ this.m_key = key;
+ this.m_projectDependency = projectDependency;
}

public IdeDependency(IdeDependency dep) {
- this.key = dep.getKey();
- this.projectDependency = dep.isProjectDependency();
- this.buildEnabled = dep.isBuildEnabled();
- this.testEnabled = dep.isTestEnabled();
- this.runtimeEnabled = dep.isRuntimeEnabled();
- this.indirect = true;
+ this.m_key = dep.getKey();
+ this.m_projectDependency = dep.isProjectDependency();
+ this.m_buildEnabled = dep.isBuildEnabled();
+ this.m_testEnabled = dep.isTestEnabled();
+ this.m_runtimeEnabled = dep.isRuntimeEnabled();
+ this.m_indirect = true;
}

public boolean equals(Object other) {
@@ -61,35 +61,35 @@
}

public String getKey() {
- return key;
+ return m_key;
}

public boolean isProjectDependency() {
- return projectDependency;
+ return m_projectDependency;
}

public boolean isBuildEnabled() {
- return buildEnabled;
+ return m_buildEnabled;
}

public void setBuildEnabled(boolean buildEnabled) {
- this.buildEnabled = buildEnabled;
+ this.m_buildEnabled = buildEnabled;
}

public boolean isTestEnabled() {
- return testEnabled;
+ return m_testEnabled;
}

public void setTestEnabled(boolean testEnabled) {
- this.testEnabled = testEnabled;
+ this.m_testEnabled = testEnabled;
}

public boolean isRuntimeEnabled() {
- return runtimeEnabled;
+ return m_runtimeEnabled;
}

public void setRuntimeEnabled(boolean runtimeEnabled) {
- this.runtimeEnabled = runtimeEnabled;
+ this.m_runtimeEnabled = runtimeEnabled;
}


@@ -100,7 +100,7 @@
* @return <code>true</code>, if this is an indirect dependency.
*/
public boolean isIndirect() {
- return indirect;
+ return m_indirect;
}

/**
@@ -109,7 +109,7 @@
* @param indirect <code>true</code>, if the dependency is indirect.
*/
public void setIndirect(boolean indirect) {
- this.indirect = indirect;
+ this.m_indirect = indirect;
}

}

Modified:
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeProjectDefinition.java
==============================================================================
---
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeProjectDefinition.java
(original)
+++
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeProjectDefinition.java
Fri Jun 3 17:52:39 2005
@@ -28,10 +28,10 @@
*/
public class IdeProjectDefinition extends IdeDefinition {

- private final String indexPath;
+ private final String m_indexPath;
private final String basePath;
private File baseDir;
- private Definition definition;
+ private Definition m_definition;

/**
* Create a new project definition.
@@ -41,10 +41,10 @@
*/
public IdeProjectDefinition(String indexPath, Definition definition) {
super(definition.getInfo().getGroup(),
definition.getInfo().getName(), definition.getInfo().getVersion());
- this.indexPath = indexPath;
+ this.m_indexPath = indexPath;
this.basePath = definition.getBasePath();
this.baseDir = definition.getBaseDir();
- this.definition = definition;
+ this.m_definition = definition;
}

public boolean isProjectDefinition() {
@@ -57,7 +57,7 @@
* @return The path of the index file.
*/
public String getIndexPath() {
- return indexPath;
+ return m_indexPath;
}

/**
@@ -66,7 +66,7 @@
* @return The base path.
*/
public String getBasePath() {
- return definition.getBasePath();
+ return m_definition.getBasePath();
}

/**
@@ -75,11 +75,11 @@
* @return The full base path of the project.
*/
public String getFullBasePath() {
- return definition.getBaseDir().getAbsolutePath();
+ return m_definition.getBaseDir().getAbsolutePath();
}

public File getFullBaseDir() {
- return definition.getBaseDir();
+ return m_definition.getBaseDir();
}

}

Modified:
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeResourceDefinition.java
==============================================================================
---
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeResourceDefinition.java
(original)
+++
development/laboratory/ide/common/magic/src/main/net/dpml/ide/common/magic/IdeResourceDefinition.java
Fri Jun 3 17:52:39 2005
@@ -24,15 +24,15 @@
*/
public class IdeResourceDefinition extends IdeDefinition {

- private final String cache;
- private final String path;
- private final String type;
+ private final String m_cache;
+ private final String m_path;
+ private final String m_type;

public IdeResourceDefinition(String cache, String path, String type,
String group, String name, String version) {
super(group, name, version);
- this.cache = cache;
- this.path = path;
- this.type = type;
+ this.m_cache = cache;
+ this.m_path = path;
+ this.m_type = type;
}

public boolean isProjectDefinition() {
@@ -45,7 +45,7 @@
* @return The cache directory.
*/
public String getCache() {
- return cache;
+ return m_cache;
}

/**
@@ -54,7 +54,7 @@
* @return The path of the resource.
*/
public String getPath() {
- return path;
+ return m_path;
}

/**
@@ -63,7 +63,7 @@
* @return The type of the resource.
*/
public String getType() {
- return type;
+ return m_type;
}

/**
@@ -72,7 +72,7 @@
* @return The absolute path of the resource.
*/
public File getFullPath() {
- return new File(cache, path);
+ return new File(m_cache, m_path);
}

}



  • svn commit: r2697 - in development/laboratory/ide/common: . magic/src/main/net/dpml/ide/common/magic, peter, 06/03/2005

Archive powered by MHonArc 2.6.24.

Top of Page