]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/editors/GroupBaseEditorInput.java
bd9c788dc3829ced971b3e244521e109d3ec0072
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / editors / GroupBaseEditorInput.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.slc.client.ui.dist.editors;
17
18 import org.argeo.slc.SlcException;
19
20 /**
21 * An editor input pointing to a given group base in a distribution workspace
22 */
23 public class GroupBaseEditorInput extends WorkspaceEditorInput {
24
25 private final String groupBaseId;
26
27 /** uri, workspace name and group base Id cannot be null */
28 public GroupBaseEditorInput(String repoNodePath, String uri,
29 String workspaceName, String groupBaseId) {
30 super(repoNodePath, uri, workspaceName);
31 if (groupBaseId == null)
32 throw new SlcException("Group base ID cannot be null");
33 this.groupBaseId = groupBaseId;
34 }
35
36 public String getToolTipText() {
37 return "Editor for group base of ID " + groupBaseId + " in workspace "
38 + getWorkspaceName() + " in " + getUri();
39 }
40
41 public String getName() {
42 return groupBaseId;
43 }
44
45 public boolean equals(Object obj) {
46 if (this == obj)
47 return true;
48 if (obj == null)
49 return false;
50 if (!(obj instanceof GroupBaseEditorInput))
51 return false;
52
53 GroupBaseEditorInput other = (GroupBaseEditorInput) obj;
54
55 if (groupBaseId.equals(other.getGroupBaseId()))
56 return super.equals(obj);
57 else
58 return false;
59 }
60
61 public String getGroupBaseId() {
62 return groupBaseId;
63 }
64
65 }