1 11 package org.eclipse.update.core.model; 12 13 29 public class NonPluginEntryModel extends ContentEntryModel { 30 31 private String id = null; 32 33 38 public NonPluginEntryModel() { 39 super(); 40 } 41 42 48 public String getIdentifier() { 49 return id; 50 } 51 52 59 public void setIdentifier(String id) { 60 assertIsWriteable(); 61 this.id = id; 62 } 63 } 64 | Popular Tags |