1 11 package org.eclipse.pde.internal.ui.editor.plugin; 12 13 import org.eclipse.core.resources.IProject; 14 15 public class ResourceAttributeValue { 16 private IProject project; 17 private String stringValue; 18 19 public ResourceAttributeValue(IProject project, String stringValue) { 20 this.project = project; 21 this.stringValue = stringValue; 22 } 23 public IProject getProject() { 24 return project; 25 } 26 public String getStringValue() { 27 return stringValue; 28 } 29 public String toString() { 30 return getStringValue(); 31 } 32 } 33 | Popular Tags |