00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 package org.openmobileis.modules.profiles.old.embedded.core;
00026
00027 import org.openmobileis.common.util.OpenMISSerializable;
00028
00036 public final class DependProfileRubric implements OpenMISSerializable {
00037 static final long serialVersionUID = 5521257935120563452L;
00038 private String rubricName;
00039 private String[] dependList;
00040
00044 public DependProfileRubric() {
00045 super();
00046 }
00047
00048 public String getRubricName() {
00049 return rubricName;
00050 }
00051
00052 public void setRubricName(String moduleName) {
00053 this.rubricName = moduleName;
00054 }
00055
00056 public String[] getRubricDepends() {
00057 return dependList;
00058 }
00059
00060 public void setRubricDepends(String[] dependList) {
00061 this.dependList = dependList;
00062 }
00063
00064 }