Examples of link()


Examples of com.sun.star.sheet.XSheetLinkable.link()

        XSheetLinkable SL = (XSheetLinkable)
            UnoRuntime.queryInterface(XSheetLinkable.class, oSheet);

        // creating link.
        String aSourceArea = util.utils.getFullTestURL("calcshapes.sxc");
        SL.link(aSourceArea, "Sheet1", "", "",
            com.sun.star.sheet.SheetLinkMode.VALUE);

        // Getting links.
        XPropertySet docProps = (XPropertySet)
            UnoRuntime.queryInterface(XPropertySet.class, xSheetDoc);
View Full Code Here

Examples of com.sun.tools.doclets.formats.html.HtmlDocletWriter.link()

    super.generateOtherFiles(rootDoc, classTree);
    HtmlDocletWriter writer = new HtmlDocletWriter(configuration, "jsdoc.html");

    writer.html();
    writer.head();
    writer.link("rel='stylesheet' type='text/css' href='jsdoc.css'");
    writer.headEnd();
    writer.body("white", true);

    writer.h1("Exported JavaScript-API: Index of Classes");
    writer.ul();
View Full Code Here

Examples of com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.link()

            new RuntimeModelBuilder(context, reader, Collections.<Class, Class> emptyMap(), null);
        builder.setErrorHandler(errorListener);
        for (Class c : classes)
            builder.getTypeInfo(new Ref<Type, Class>(c));

        RuntimeTypeInfoSet r = builder.link();
        errorListener.check();
        return r;
    }

    private static class JAXBAccessor implements Accessor {
View Full Code Here

Examples of com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.link()

            new RuntimeModelBuilder(context, reader, Collections.<Class, Class> emptyMap(), null);
        builder.setErrorHandler(errorListener);
        for (Class c : classes)
            builder.getTypeInfo(new Ref<Type, Class>(c));

        RuntimeTypeInfoSet r = builder.link();
        errorListener.check();
        return r;
    }

    public void testReflection() throws Exception {
View Full Code Here

Examples of com.sun.xml.internal.bind.v2.model.impl.RuntimeModelBuilder.link()

                continue;
            builder.getTypeInfo(new Ref<Type,Class>(c));
        }

        this.hasSwaRef |= builder.hasSwaRef;
        RuntimeTypeInfoSet r = builder.link();

        errorHandler.check();
        assert r!=null : "if no error was reported, the link must be a success";

        typeInfoSetCache = new WeakReference<RuntimeTypeInfoSet>(r);
View Full Code Here

Examples of fr.openwide.core.wicket.more.markup.html.template.model.NavigationMenuItem.link()

     
      @Override
      protected void populateItem(ListItem<NavigationMenuItem> subMenuItem) {
        NavigationMenuItem subMenu = subMenuItem.getModelObject();
       
        AbstractLink navLink = subMenu.link("searchLink");
        navLink.add(new Label("searchLabel", subMenu.getLabelModel()));
       
        subMenuItem.add(navLink);
      }
    };
View Full Code Here

Examples of hudson.plugins.analysis.util.HtmlPrinter.link()

    protected static String createDefaultSummary(final String url, final int warnings, final int modules) {
        HtmlPrinter summary = new HtmlPrinter();

        String message = createWarningsMessage(warnings);
        if (warnings > 0) {
            summary.append(summary.link(url, message));
        }
        else {
            summary.append(message);
        }
        if (modules > 0) {
View Full Code Here

Examples of net.sf.antcontrib.cpptasks.compiler.LinkerConfiguration.link()

            if (linkTarget.getRebuild()) {
                log("Starting link");
                LinkerConfiguration linkConfig = (LinkerConfiguration) linkTarget
                        .getConfiguration();
                if (failOnError) {
                  linkConfig.link(this, linkTarget);
                } else {
                  try {
                      linkConfig.link(this, linkTarget);                   
                  } catch(BuildException ex) {
                        log(ex.getMessage(), Project.MSG_ERR);
View Full Code Here

Examples of net.sf.sahi.client.Browser.link()

    }

    public void testLoadResourceTree() {
        Browser browser = GuiPerfTestSuite.getBrowser();

        browser.link("Inventory").click();
        browser.cell("Platforms").click();
        browser.div("Linux Operating System").under(browser.cell("Description")).doubleClick();
        // check that tree has been drawn
        assertTrue(browser.table("treeCellSelected").isVisible());
    }
View Full Code Here

Examples of net.sourceforge.javautil.common.io.impl.Directory.link()

    } else {
      throw new VirtualArtifactDeployerException(deployer, artifact, "Cannot deploy the artifact as a web application: " + artifact);
    }
   
    Directory vwar = new DirectoryRoot();
    vwar.link(war);
   
    return new WebApplicationDeployment(vwar, deployer, war);
  }

  public boolean matches(IVirtualArtifact artifact) {
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.