Examples of unlink()


Examples of com.citytechinc.cq.component.annotations.widgets.rte.Links.unlink()

      List<String> features = new ArrayList<String>();

      if (linksAnnotation.modifylink()) {
        features.add("modifylink");
      }
      if (linksAnnotation.unlink()) {
        features.add("unlink");
      }
      if (linksAnnotation.anchor()) {
        features.add("anchor");
      }
View Full Code Here

Examples of com.documentum.fc.client.IDfSysObject.unlink()

          try {
            IDfSysObject child = (IDfSysObject) i.next();
            monitor.log().debug(DctmUtils.getPath(child));
            if (unlink
                && child.getValueCount("i_folder_id") > 1) {
              child.unlink(obj.getObjectId().toString());
              child.save();
             
              if (useTransaction) {
                events.add(new String[] {"u",child.getObjectId().getId(),obj.getObjectId().getId()});
              } else {
View Full Code Here

Examples of com.documentum.fc.client.IDfSysObject.unlink()

      }
      src.link(trg.getObjectId().getId());
      events.add(new String[] { "l", src.getObjectId().getId(), trg.getObjectId().getId() } );
     
      for (String id : tmp )
        src.unlink(id);
     
      src.save();
   
      cnt++;
      monitor.worked(cnt);
View Full Code Here

Examples of com.ericsson.otp.erlang.OtpMbox.unlink()

        dbg("Java got \"internal_unlink_linking_exits\"");
        mbox2 = node.createMbox();
        mbox.link(mbox2.self());
        mbox.unlink(mbox2.self());
        mbox.link(mbox2.self());
        mbox2.unlink(mbox.self());
        mbox2.exit(tuple.elementAt(2));
        if (mbox.receive(500)!=null) System.exit(6);
        break;
    case internal_unlink_linked_exits:
        dbg("Java got \"internal_unlink_linked_exits\"");
View Full Code Here

Examples of com.erudika.para.core.ParaObject.unlink()

          } else if (DELETE.equals(ctx.getMethod())) {
            if (type2 == null && id2 == null) {
              pobj.unlinkAll();
            } else if (type2 != null) {
              if (id2 != null) {
                pobj.unlink(type2, id2);
              } else if (childrenOnly != null) {
                pobj.deleteChildren(type2);
              }
            }
            return Response.ok().build();
View Full Code Here

Examples of jnr.posix.POSIX.unlink()

            if (lToDelete.isDirectory() && !isSymlink) {
                throw runtime.newErrnoEPERMError(filename.getUnicodeValue());
            }

            if (posix.unlink(lToDelete.getAbsolutePath()) < 0) {
                throw runtime.newErrnoFromInt(posix.errno());
            }
        }

        return runtime.newFixnum(args.length);
View Full Code Here

Examples of net.sourceforge.javautil.common.io.VirtualArtifactSystem.unlink()

      this.classContext = null;
    }
   
    if (this.root instanceof DirectoryRoot && !reload) {
      VirtualArtifactSystem vas = VirtualArtifactSystem.get("net.sf.javautil.web.server." + ctx.getHost().getName() + "." + getName(), false);
      if (vas != null) vas.unlink(this.root.getPath());
    }
  }

  public void preDeploySetup(WebApplicationDeploymentContext ctx, boolean reload) {
    if (this.resolver == null)
View Full Code Here

Examples of org.apache.xpath.VariableStack.unlink()

          // previous link index from the link stack, rather than
          // the manually set cfb.  So,
          // the only safe solution is to restore it back
          // to the same position it was on entry, since we're
          // really not working in a stack context here. (Bug4218)
          vars.unlink(currentFrameBottom);
          xctxt.popRTFContext();
        }
         
        transformer.popCurrentMatched();
       
View Full Code Here

Examples of org.apache.xpath.VariableStack.unlink()

                "select", new XPath(m_selectExpression),
                new org.apache.xpath.objects.XNodeSet(sourceNodes));
     
      // Unlink to the original stack frame 
      if(nParams > 0)
        vars.unlink(thisframe);
      xctxt.popSAXLocator();
      xctxt.popContextNodeList();
      transformer.popElemTemplateElement();
      xctxt.popCurrentExpressionNode();
      xctxt.popCurrentNode();
View Full Code Here

Examples of org.apache.xpath.VariableStack.unlink()

          // previous link index from the link stack, rather than
          // the manually set cfb.  So,
          // the only safe solution is to restore it back
          // to the same position it was on entry, since we're
          // really not working in a stack context here. (Bug4218)
          vars.unlink(currentFrameBottom);
          xctxt.popRTFContext();
        }
         
        transformer.popCurrentMatched();
       
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.