Changeset 5095
- Timestamp:
- Sep 11, 2009, 8:51:24 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/core/net/sf/basedb/plugins/Base1PluginExecuter.java
r5094 r5095 56 56 import net.sf.basedb.core.User; 57 57 import net.sf.basedb.core.Version; 58 import net.sf.basedb.core.data.RawData;59 import net.sf.basedb.core.data.ReporterData;60 58 import net.sf.basedb.core.plugin.About; 61 59 import net.sf.basedb.core.plugin.AboutImpl; … … 1729 1727 } 1730 1728 } 1731 1732 private static class ReporterProxy1733 extends ReporterData1734 {1735 private int id;1736 ReporterProxy()1737 {}1738 public void setTheId(int id)1739 {1740 this.id = id;1741 }1742 public int getId()1743 {1744 return id;1745 }1746 }1747 1748 private static class RawDataProxy1749 extends RawData1750 {1751 private int id;1752 RawDataProxy()1753 {}1754 public void setTheId(int id)1755 {1756 this.id = id;1757 }1758 public int getId()1759 {1760 return id;1761 }1762 }1763 1764 private static class ChildBioAssay1765 {1766 final int id;1767 final String name;1768 final Set<Integer> parents;1769 1770 ChildBioAssay(int id, String name, Set<Integer> parents)1771 {1772 this.id = id;1773 this.name = name;1774 this.parents = parents;1775 }1776 }1777 1729 }
Note: See TracChangeset
for help on using the changeset viewer.