Searched refs:isDescendant (Results 1 - 25 of 35) sorted by relevance

12

/forgerock/opendj-b2.6/src/server/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java341 public static boolean isDescendant(File descendant, File path) { method in class:UpgradeUtils
342 boolean isDescendant = false;
345 while ((parent != null) && !isDescendant) {
346 isDescendant = path.equals(parent);
347 if (!isDescendant) {
352 return isDescendant;
/forgerock/opendj2/src/server/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java325 static boolean isDescendant(File descendant, File path) { method in class:UpgradeUtils
326 boolean isDescendant = false;
329 while ((parent != null) && !isDescendant) {
330 isDescendant = path.equals(parent);
331 if (!isDescendant) {
336 return isDescendant;
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java326 static boolean isDescendant(File descendant, File path) { method in class:UpgradeUtils
327 boolean isDescendant = false;
330 while ((parent != null) && !isDescendant) {
331 isDescendant = path.equals(parent);
332 if (!isDescendant) {
337 return isDescendant;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java225 public static boolean isDescendant(File descendant, File path) { method in class:UpgradeUtils
226 boolean isDescendant = false;
229 while ((parent != null) && !isDescendant) {
230 isDescendant = path.equals(parent);
231 if (!isDescendant) {
236 return isDescendant;
/forgerock/opendj2-hg/src/server/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java325 static boolean isDescendant(File descendant, File path) { method in class:UpgradeUtils
326 boolean isDescendant = false;
329 while ((parent != null) && !isDescendant) {
330 isDescendant = path.equals(parent);
331 if (!isDescendant) {
336 return isDescendant;
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java314 public static boolean isDescendant(File descendant, File path) { method in class:Utils
315 boolean isDescendant = false;
318 while ((parent != null) && !isDescendant) {
319 isDescendant = path.equals(parent);
320 if (!isDescendant) {
325 return isDescendant;
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java315 public static boolean isDescendant(File descendant, File path) { method in class:Utils
316 boolean isDescendant = false;
319 while ((parent != null) && !isDescendant) {
320 isDescendant = path.equals(parent);
321 if (!isDescendant) {
326 return isDescendant;
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java315 public static boolean isDescendant(File descendant, File path) { method in class:Utils
316 boolean isDescendant = false;
319 while ((parent != null) && !isDescendant) {
320 isDescendant = path.equals(parent);
321 if (!isDescendant) {
326 return isDescendant;
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java314 public static boolean isDescendant(File descendant, File path) { method in class:Utils
315 boolean isDescendant = false;
318 while ((parent != null) && !isDescendant) {
319 isDescendant = path.equals(parent);
320 if (!isDescendant) {
325 return isDescendant;
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java333 public static boolean isDescendant(File descendant, File path) { method in class:Utils
334 boolean isDescendant = false;
337 while ((parent != null) && !isDescendant) {
338 isDescendant = path.equals(parent);
339 if (!isDescendant) {
344 return isDescendant;
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/
H A DConfiguration.java268 if (!Utils.isDescendant(fullDbPath, install.getInstanceDirectory())) {
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/
H A DConfiguration.java269 if (!Utils.isDescendant(fullDbPath, install.getInstanceDirectory())) {
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/
H A DConfiguration.java269 if (!Utils.isDescendant(fullDbPath, install.getInstanceDirectory())) {
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/
H A DConfiguration.java268 if (!Utils.isDescendant(fullDbPath, install.getInstanceDirectory())) {
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/
H A DConfiguration.java269 if (!Utils.isDescendant(fullDbPath, install.getInstanceDirectory())) {
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/
H A DConfiguration.java268 if (!Utils.isDescendant(fullDbPath, install.getInstanceDirectory())) {
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBrowseSchemaPanel.java1495 if (isDescendant(oc, o))
1541 private boolean isDescendant(ObjectClass ocParent, ObjectClass oChild) method in class:BrowseSchemaPanel
1552 if (ocParent == o || isDescendant(ocParent, o))
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBrowseSchemaPanel.java1494 if (isDescendant(oc, o))
1540 private boolean isDescendant(ObjectClass ocParent, ObjectClass oChild) method in class:BrowseSchemaPanel
1551 if (ocParent == o || isDescendant(ocParent, o))
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBrowseSchemaPanel.java1495 if (isDescendant(oc, o))
1541 private boolean isDescendant(ObjectClass ocParent, ObjectClass oChild) method in class:BrowseSchemaPanel
1552 if (ocParent == o || isDescendant(ocParent, o))
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBrowseSchemaPanel.java1494 if (isDescendant(oc, o))
1540 private boolean isDescendant(ObjectClass ocParent, ObjectClass oChild) method in class:BrowseSchemaPanel
1551 if (ocParent == o || isDescendant(ocParent, o))
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBrowseSchemaPanel.java1495 if (isDescendant(oc, o))
1541 private boolean isDescendant(ObjectClass ocParent, ObjectClass oChild) method in class:BrowseSchemaPanel
1552 if (ocParent == o || isDescendant(ocParent, o))
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DBrowseSchemaPanel.java1281 if (isDescendant(oc, o) && mustAddObjectClassName(o, f))
1342 private boolean isDescendant(ObjectClass ocParent, ObjectClass oChild) method in class:BrowseSchemaPanel
1349 if (ocParent == o || isDescendant(ocParent, o))
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java311 static boolean isDescendant(File descendant, File path) { method in class:UpgradeUtils
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/uninstaller/
H A DUninstaller.java100 import static org.opends.quicksetup.util.Utils.isDescendant;
1453 return file.equals(directory) || isDescendant(file, directory);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/uninstaller/
H A DUninstaller.java1394 return file.equals(directory) || isDescendant(file, directory);

Completed in 125 milliseconds

12