1 11 package org.eclipse.core.internal.registry.spi; 12 13 import org.eclipse.core.runtime.IConfigurationElement; 14 15 30 public final class ConfigurationElementAttribute { 31 32 36 private String name; 37 38 42 private String value; 43 44 50 public ConfigurationElementAttribute(String name, String value) { 51 this.name = name; 52 this.value = value; 53 } 54 55 60 public String getName() { 61 return name; 62 } 63 64 69 public String getValue() { 70 return value; 71 } 72 } 73 | Popular Tags |