Searched defs:source (Results 1 - 25 of 294) sorted by relevance

1234567891011>>

/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DLevenshteinDistance.java42 * The basic algorithm works as follows for a source string S of length X and
68 * needed to transform the source string into the target string, will be
88 * @param source The source string to compare. It must not be {@code null}.
91 * @return The minimum number of changes required to turn the source string
94 public static int calculate(String source, String target) argument
96 ensureNotNull(source, target);
98 // sl == source length; tl == target length
99 int sl = source.length();
136 char s = source
[all...]
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/event/
H A DButtonEvent.java46 * @param source the button that generated the event
49 public ButtonEvent(Object source, ButtonName buttonName) argument
51 super(source);
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/event/
H A DButtonEvent.java47 * @param source the button that generated the event
50 public ButtonEvent(Object source, ButtonName buttonName) argument
52 super(source);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/event/
H A DConfigurationChangeEvent.java40 private Object source; field in class:ConfigurationChangeEvent
45 * @param source the source of this event.
48 public ConfigurationChangeEvent(Object source, ServerDescriptor newDescriptor) argument
50 this.source = source;
64 * Returns the source of the event.
65 * @return the source of the event.
69 return source;
H A DConfigurationElementCreatedEvent.java37 private Object source; field in class:ConfigurationElementCreatedEvent
42 * @param source the source of the event.
45 public ConfigurationElementCreatedEvent(Object source, argument
48 this.source = source;
62 * Returns the source of the event.
63 * @return the source of the event.
67 return source;
H A DEntryReadEvent.java38 private Object source; field in class:EntryReadEvent
43 * @param source the source of the event.
46 public EntryReadEvent(Object source, CustomSearchResult sr) argument
48 this.source = source;
53 * Returns the source of the event.
54 * @return the source of the event.
58 return source;
H A DIndexSelectionEvent.java39 private Object source; field in class:IndexSelectionEvent
44 * @param source the source of the event.
47 public IndexSelectionEvent(Object source, AbstractIndexDescriptor index) argument
49 this.source = source;
63 * Returns the source of the event.
64 * @return the source of the event.
68 return source;
H A DLDAPEntryChangedEvent.java38 private Object source; field in class:LDAPEntryChangedEvent
43 * @param source the source of the event.
47 public LDAPEntryChangedEvent(Object source, Entry entry) argument
49 this.source = source;
64 * Returns the source of the event.
65 * @return the source of the event.
69 return source;
H A DSchemaElementSelectionEvent.java37 private Object source; field in class:SchemaElementSelectionEvent
42 * @param source the source of the event.
45 public SchemaElementSelectionEvent(Object source, Object schemaElement) argument
47 this.source = source;
61 * Returns the source of the event.
62 * @return the source of the event.
66 return source;
H A DSuperiorObjectClassesChangedEvent.java46 private Object source; field in class:SuperiorObjectClassesChangedEvent
51 * @param source the source of the event.
54 public SuperiorObjectClassesChangedEvent(Object source, argument
57 this.source = source;
62 * Returns the source of the object.
63 * @return the source of the object.
67 return source;
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/event/
H A DConfigurationChangeEvent.java41 private Object source; field in class:ConfigurationChangeEvent
46 * @param source the source of this event.
49 public ConfigurationChangeEvent(Object source, ServerDescriptor newDescriptor) argument
51 this.source = source;
65 * Returns the source of the event.
66 * @return the source of the event.
70 return source;
H A DConfigurationElementCreatedEvent.java38 private Object source; field in class:ConfigurationElementCreatedEvent
43 * @param source the source of the event.
46 public ConfigurationElementCreatedEvent(Object source, argument
49 this.source = source;
63 * Returns the source of the event.
64 * @return the source of the event.
68 return source;
H A DEntryReadEvent.java39 private Object source; field in class:EntryReadEvent
44 * @param source the source of the event.
47 public EntryReadEvent(Object source, CustomSearchResult sr) argument
49 this.source = source;
54 * Returns the source of the event.
55 * @return the source of the event.
59 return source;
H A DIndexSelectionEvent.java40 private Object source; field in class:IndexSelectionEvent
45 * @param source the source of the event.
48 public IndexSelectionEvent(Object source, AbstractIndexDescriptor index) argument
50 this.source = source;
64 * Returns the source of the event.
65 * @return the source of the event.
69 return source;
H A DLDAPEntryChangedEvent.java39 private Object source; field in class:LDAPEntryChangedEvent
44 * @param source the source of the event.
48 public LDAPEntryChangedEvent(Object source, Entry entry) argument
50 this.source = source;
65 * Returns the source of the event.
66 * @return the source of the event.
70 return source;
H A DSchemaElementSelectionEvent.java38 private Object source; field in class:SchemaElementSelectionEvent
43 * @param source the source of the event.
46 public SchemaElementSelectionEvent(Object source, Object schemaElement) argument
48 this.source = source;
62 * Returns the source of the event.
63 * @return the source of the event.
67 return source;
H A DSuperiorObjectClassesChangedEvent.java47 private Object source; field in class:SuperiorObjectClassesChangedEvent
52 * @param source the source of the event.
55 public SuperiorObjectClassesChangedEvent(Object source, argument
58 this.source = source;
63 * Returns the source of the object.
64 * @return the source of the object.
68 return source;
/forgerock/opendj2/src/server/org/opends/server/util/
H A DLevenshteinDistance.java41 * The basic algorithm works as follows for a source string S of length X and
67 * needed to transform the source string into the target string, will be
87 * @param source The source string to compare. It must not be {@code null}.
90 * @return The minimum number of changes required to turn the source string
93 public static int calculate(String source, String target) argument
95 ensureNotNull(source, target);
97 // sl == source length; tl == target length
98 int sl = source.length();
135 char s = source
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DLevenshteinDistance.java42 * The basic algorithm works as follows for a source string S of length X and
68 * needed to transform the source string into the target string, will be
88 * @param source The source string to compare. It must not be {@code null}.
91 * @return The minimum number of changes required to turn the source string
94 public static int calculate(String source, String target) argument
96 ensureNotNull(source, target);
98 // sl == source length; tl == target length
99 int sl = source.length();
136 char s = source
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/event/
H A DConfigurationChangeEvent.java41 private Object source; field in class:ConfigurationChangeEvent
46 * @param source the source of this event.
49 public ConfigurationChangeEvent(Object source, ServerDescriptor newDescriptor) argument
51 this.source = source;
65 * Returns the source of the event.
66 * @return the source of the event.
70 return source;
H A DConfigurationElementCreatedEvent.java38 private Object source; field in class:ConfigurationElementCreatedEvent
43 * @param source the source of the event.
46 public ConfigurationElementCreatedEvent(Object source, argument
49 this.source = source;
63 * Returns the source of the event.
64 * @return the source of the event.
68 return source;
H A DEntryReadEvent.java39 private Object source; field in class:EntryReadEvent
44 * @param source the source of the event.
47 public EntryReadEvent(Object source, CustomSearchResult sr) argument
49 this.source = source;
54 * Returns the source of the event.
55 * @return the source of the event.
59 return source;
H A DIndexSelectionEvent.java40 private Object source; field in class:IndexSelectionEvent
45 * @param source the source of the event.
48 public IndexSelectionEvent(Object source, AbstractIndexDescriptor index) argument
50 this.source = source;
64 * Returns the source of the event.
65 * @return the source of the event.
69 return source;
H A DLDAPEntryChangedEvent.java39 private Object source; field in class:LDAPEntryChangedEvent
44 * @param source the source of the event.
48 public LDAPEntryChangedEvent(Object source, Entry entry) argument
50 this.source = source;
65 * Returns the source of the event.
66 * @return the source of the event.
70 return source;
H A DSchemaElementSelectionEvent.java38 private Object source; field in class:SchemaElementSelectionEvent
43 * @param source the source of the event.
46 public SchemaElementSelectionEvent(Object source, Object schemaElement) argument
48 this.source = source;
62 * Returns the source of the event.
63 * @return the source of the event.
67 return source;

Completed in 38 milliseconds

1234567891011>>