Home | History | Annotate | Download | only in slf4j

Lines Matching defs:Marker

34  * marker data.
42 public interface Marker extends Serializable {
45 * This constant represents any marker, including a null marker.
50 * This constant represents any non-null marker.
55 * Get the name of this Marker.
57 * @return name of marker
62 * Add a reference to another Marker.
65 * a reference to another marker
69 public void add(Marker reference);
72 * Remove a marker reference.
75 * the marker reference to remove
78 public boolean remove(Marker reference);
86 * Does this marker have any references?
88 * @return true if this marker has one or more references, false otherwise.
94 * marker. An empty iterator is returned when this marker has no references.
96 * @return Iterator over the references of this marker
98 public Iterator<Marker> iterator();
101 * Does this marker contain a reference to the 'other' marker? Marker A is defined
102 * to contain marker B, if A == B or if B is referenced by A, or if B is referenced
106 * The marker to test for inclusion.
109 * @return Whether this marker contains the other marker.
111 public boolean contains(Marker other);
114 * Does this marker contain the marker named 'name'?
118 * @param name The marker name to test for inclusion.
119 * @return Whether this marker contains the other marker.
134 * Compute the hash code based on the name of this marker.