This commit was manufactured by cvs2svn to create tag 'R1_0_M4_N20060619'.
diff --git a/plugins/org.eclipse.epf.library/src/org/eclipse/epf/library/configuration/AttributeValue.java b/plugins/org.eclipse.epf.library/src/org/eclipse/epf/library/configuration/AttributeValue.java
new file mode 100755
index 0000000..9aca4de
--- /dev/null
+++ b/plugins/org.eclipse.epf.library/src/org/eclipse/epf/library/configuration/AttributeValue.java
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+// Copyright (c) 2005, 2006 IBM Corporation and others.
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// which accompanies this distribution, and is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// Contributors:
+// IBM Corporation - initial implementation
+//------------------------------------------------------------------------------
+package org.eclipse.epf.library.configuration;
+
+import org.eclipse.epf.uma.MethodElement;
+
+public class AttributeValue {
+	
+	public MethodElement element;
+
+	public String text;
+
+	public AttributeValue(MethodElement e, String text) {
+		this.element = e;
+		this.text = text;
+	}
+	
+}