View Javadoc
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.cms.ui.workbench.internal.useradmin.parts;
17  
18  import org.eclipse.jface.resource.ImageDescriptor;
19  import org.eclipse.ui.IEditorInput;
20  import org.eclipse.ui.IPersistableElement;
21  
22  /** Editor input for an Argeo user. */
23  public class ArgeoUserEditorInput implements IEditorInput {
24  	private final String username;
25  
26  	public ArgeoUserEditorInput(String username) {
27  		this.username = username;
28  	}
29  
30  	@SuppressWarnings("unchecked")
31  	public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
32  		return null;
33  	}
34  
35  	public boolean exists() {
36  		return username != null;
37  	}
38  
39  	public ImageDescriptor getImageDescriptor() {
40  		return null;
41  	}
42  
43  	public String getName() {
44  		return username != null ? username : "<new user>";
45  	}
46  
47  	public IPersistableElement getPersistable() {
48  		return null;
49  	}
50  
51  	public String getToolTipText() {
52  		return username != null ? username : "<new user>";
53  	}
54  
55  	public boolean equals(Object obj) {
56  		if (!(obj instanceof ArgeoUserEditorInput))
57  			return false;
58  		if (((ArgeoUserEditorInput) obj).getUsername() == null)
59  			return false;
60  		return ((ArgeoUserEditorInput) obj).getUsername().equals(username);
61  	}
62  
63  	public String getUsername() {
64  		return username;
65  	}
66  }