summaryrefslogtreecommitdiff
path: root/src/plugins/android.codeutils/templates/activity_samples/endless_list/ListElement.java
blob: 8030fb275ee010a09c3250c971b476976e0d93e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package #package_name#;

import java.io.Serializable;

/**
 * Element which belongs to each row of the List of this view.
 */
class ListElement implements Serializable {
	
	private static final long serialVersionUID = -1494059051539426231L;
	String text;
	Integer imageId;

	/**
	 * Always create the object with a text and an image.
	 * 
	 * @param text
	 *            Text of the {@link ListElement}.
	 * @param imageId
	 *            Image identifier of the {@link ListElement}.
	 */
	public ListElement(String text, Integer imageId) {
		this.text = text;
		this.imageId = imageId;
	}

	/**
	 * Get the Text.
	 * 
	 * @return Return the Text.
	 */
	public String getText() {
		return text;
	}

	/**
	 * Set the Text.
	 * 
	 * @param text
	 *            Text to be set.
	 */
	public void setText(String text) {
		this.text = text;
	}

	/**
	 * Get the Image identifier.
	 * 
	 * @return Return the Image identifier.
	 */
	public Integer getImageId() {
		return imageId;
	}

	/**
	 * Set the Image identifier.
	 * 
	 * @param imageId
	 *            Image Identifier to be set.
	 */
	public void setImageId(Integer imageId) {
		this.imageId = imageId;
	}

	/**
	 * Here we consider two {@link ListElement}s to be equal when they have
	 * the same text field.
	 */
	@Override
	public boolean equals(Object element) {
		return element != null && element instanceof ListElement
				&& this.text != null
				&& ((ListElement) element).text != null
				&& ((ListElement) element).text.equals(text);
	}

	@Override
	public int hashCode() {
		return text != null ? text.length() * 3 : 4;
	}
}