Examples of addParent()


Examples of com.arjuna.common.util.propertyservice.propertycontainer.PropertyManagerPluginInterface.addParent()

                            if ( dependant == null )
                            {
                                throw new LoadPropertiesException("Dependency not found - property file invalid");
                            }
              pm.addParent(dependant);
            }
          }
        }
        else
        {
View Full Code Here

Examples of com.arjuna.common.util.propertyservice.propertycontainer.PropertyManagerPluginInterface.addParent()

                            if ( dependant == null )
                            {
                                throw new LoadPropertiesException("Dependency not found - property file invalid");
                            }
              pm.addParent(dependant);
            }
          }
        }
        else
        {
View Full Code Here

Examples of com.arjuna.common.util.propertyservice.propertycontainer.PropertyManagerPluginInterface.addParent()

/*     */
/* 224 */               if (dependant == null)
/*     */               {
/* 226 */                 throw new LoadPropertiesException("Dependency not found - property file invalid");
/*     */               }
/* 228 */               pm.addParent(dependant);
/*     */             }
/*     */           }
/*     */         }
/*     */         else
/*     */         {
View Full Code Here

Examples of com.flaptor.hounder.crawler.pagedb.Page.addParent()

                                        Page child = new Page(CleanURL(link.getUrl()), 1.0f);
                                        child.setRetries(0);
                                        child.setLastAttempt(0L);
                                        child.setLastSuccess(0L);
                                        if (recordParents) {
                                            child.addParent(pageurl);
                                        }
                                        child.addAnchor(link.getAnchor()); // at this point it can only be one anchor
                                        child.setScore(PageRank.parentContribution(page.getScore(), links.length));
                              
                                        // unless the child is a hotspot, it is removed from the fetched page by 1 level
View Full Code Here

Examples of com.nijiko.permissions.User.addParent()

  @Override
  void addGroup(String playerName, Player worldReference, String endingGroup) {
    User user = ph.getUserObject(worldReference.getWorld().getName(), playerName);
    Group firstGroup = ph.getGroupObject(worldReference.getWorld().getName(), endingGroup);
    user.addParent(firstGroup);
  }

  @Override
  void addPermission(Player player, String node) {
    ph.addUserPermission(player.getWorld().getName(), player.getName(), node);
View Full Code Here

Examples of com.opensymphony.xwork2.config.entities.PackageConfig.addParent()

        ActionConfig testActionTagActionConfig = new ActionConfig((String) null, TestAction.class, (Map) null, testActionTagResults, new ArrayList());
        defaultPackageConfig.addActionConfig("testActionTagAction", testActionTagActionConfig);

        PackageConfig namespacePackageConfig = new PackageConfig("namespacePackage");
        namespacePackageConfig.setNamespace(TEST_NAMESPACE);
        namespacePackageConfig.addParent(defaultPackageConfig);

        ActionConfig namespaceAction = new ActionConfig(null, TestAction.class, null, null, null);
        namespacePackageConfig.addActionConfig(TEST_NAMESPACE_ACTION, namespaceAction);

        configurationManager.addPackageConfig("namespacePackage", namespacePackageConfig);
View Full Code Here

Examples of com.opensymphony.xwork2.config.entities.PackageConfig.addParent()

        ActionConfig testActionTagActionConfig = new ActionConfig((String) null, TestAction.class, (Map) null, testActionTagResults, new ArrayList());
        defaultPackageConfig.addActionConfig("testActionTagAction", testActionTagActionConfig);

        PackageConfig namespacePackageConfig = new PackageConfig("namespacePackage");
        namespacePackageConfig.setNamespace(TEST_NAMESPACE);
        namespacePackageConfig.addParent(defaultPackageConfig);

        ActionConfig namespaceAction = new ActionConfig(null, TestAction.class, null, null, null);
        namespacePackageConfig.addActionConfig(TEST_NAMESPACE_ACTION, namespaceAction);

        configuration.addPackageConfig("namespacePackage", namespacePackageConfig);
View Full Code Here

Examples of com.opensymphony.xwork2.config.entities.PackageConfig.addParent()

            if (parent == null) {
                throw new ConfigurationException("ClasspathConfigurationProvider: Unable to locate default parent package: " +
                        defaultParentPackage);
            }
            pkgConfig.addParent(parent);

            pkgConfig.setNamespace(actionNamespace);

            loadedPackageConfigs.put(actionPackage, pkgConfig);
        }
View Full Code Here

Examples of edu.msu.cme.rdp.classifier.HierarchyTree.addParent()

            }

            HierarchyTree aTree = new HierarchyTree(attrs.getValue(0), taxid, attrs.getValue(2), leaveCount, genusIndex, copyNumber);
            // The first TreeNode is the root
            if (root == null) {
                aTree.addParent(null);
                root = aTree;
            } else {
                HierarchyTree parent = null;
                while (!treeNodeStack.empty()) {
                    HierarchyTree topNode = (HierarchyTree) treeNodeStack.peek();
View Full Code Here

Examples of io.fabric8.api.ProfileBuilder.addParent()

       
        // we can only change parents to existing profiles
        Profile[] parents = FabricCommand.getExistingProfiles(fabricService, version, parentIds);
        ProfileBuilder builder = ProfileBuilder.Factory.createFrom(profile);
        for (Profile parent : parents) {
            builder.addParent(parent.getId());
        }
        profileService.updateProfile(builder.getProfile());
        return null;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.