Examples of meta()


Examples of org.jruby.anno.JRubyMethod.meta()

            MethodIndex.SCOPE_AWARE_METHODS.addAll(scopeAwareMethods);
        }
       
        RubyModule singletonClass;

        if (jrubyMethod.meta()) {
            singletonClass = module.getSingletonClass();
            dynamicMethod.setImplementationClass(singletonClass);

            String baseName;
            if (jrubyMethod.name().length == 0) {
View Full Code Here

Examples of org.omg.SendingContext.CodeBase.meta()

        CodeBase codebase = CodeBaseHelper.narrow(runtime);
        if (codebase == null) {
            throw new IOException("cannot narrow RunTime -> CodeBase");
        }

        FullValueDescription desc = codebase.meta(repositoryID);

        return new ObjectDeserializer(desc, codebase);
    }

    static Class getClassFromTypeCode(TypeCode tc) {
View Full Code Here

Examples of org.omg.SendingContext.CodeBase.meta()

        CodeBase codebase = CodeBaseHelper.narrow(runtime);
        if (codebase == null) {
            throw new MARSHAL("cannot locate RunTime CodeBase");
        }

        FullValueDescription fvd = codebase.meta(repid);

        ValueDescriptor super_desc = null;
        if (!"".equals(fvd.base_value)) {
            super_desc = getDescriptor(clz.getSuperclass(), fvd.base_value,
                    codebase);
View Full Code Here

Examples of org.omg.SendingContext.CodeBase.meta()

        CodeBase codebase = CodeBaseHelper.narrow(runtime);
        if (codebase == null) {
            throw new IOException("cannot narrow RunTime -> CodeBase");
        }

        FullValueDescription desc = codebase.meta(repositoryID);

        return new ObjectDeserializer(desc, codebase);
    }

    static Class getClassFromTypeCode(TypeCode tc) {
View Full Code Here

Examples of org.omg.SendingContext.CodeBase.meta()

        CodeBase codebase = CodeBaseHelper.narrow(runtime);
        if (codebase == null) {
            throw new MARSHAL("cannot locate RunTime CodeBase");
        }

        FullValueDescription fvd = codebase.meta(repid);

        ValueDescriptor super_desc = null;
        if (!"".equals(fvd.base_value)) {
            super_desc = getDescriptor(clz.getSuperclass(), fvd.base_value,
                    codebase);
View Full Code Here

Examples of org.sgx.yuigwt.yui.yql.api.desc.TableDesc.meta()

        parent.append(
        "<table>" +
        "  <tr><td>TableShow Name: </td><td>"+t.name()+"</td></tr>" +
        "  <tr><td>TableShow Hash: </td><td>"+t.hash()+"</td></tr>" +
        "  <tr><td>TableShow Security: </td><td>"+t.security()+"</td></tr>" +
        "  <tr><td>Author: </td><td>"+t.meta().author()+"</td></tr>" +
        "</table>"
        );
      }
    }, YQLParams.create().env("http://datatables.org/alltables.env").
      format("json").diagnostics("true"));
View Full Code Here

Examples of org.sgx.yuigwt.yui.yql.api.desc.TableDesc.meta()

     
      TableDesc t = desc1.table();
//      console.log("t.meta().sampleQuery(): "+Y.dump(t.meta().sampleQuery()));
     
      String sapmleQueryHtml = "<ul>";
      JsArray<SampleQuery> sampleQUeries = t.meta().sampleQuery();
      for (int i = 0; i < sampleQUeries.length(); i++) {
        SampleQuery sq = sampleQUeries.get(i);
        sapmleQueryHtml += "<li><p>Description: "+Y.Escape().html(sq.description())+"</p>" +
        "<pre>" + sq.content()+"</pre></li>";
      }
View Full Code Here

Examples of org.sgx.yuigwt.yui.yql.api.desc.TableDesc.meta()

      descriptionContainer.append(
      "<table>" +
      "  <tr><td>TableShow Name: </td><td>"+t.name()+"</td></tr>" +
      "  <tr><td>TableShow Hash: </td><td>"+t.hash()+"</td></tr>" +
      "  <tr><td>TableShow Security: </td><td>"+t.security()+"</td></tr>" +
      "  <tr><td>Author: </td><td>"+t.meta().author()+"</td></tr>" +
      "  <tr><td>Documentation URL: </td><td><a href=\""+t.meta().documentationURL()+"\">link to docs</a></td></tr>" +
      "  <tr><td>sample query: </td><td>"+sapmleQueryHtml+"</td></tr>" +
      "</table>"
      );
    }
View Full Code Here

Examples of org.sgx.yuigwt.yui.yql.api.desc.TableDesc.meta()

      "<table>" +
      "  <tr><td>TableShow Name: </td><td>"+t.name()+"</td></tr>" +
      "  <tr><td>TableShow Hash: </td><td>"+t.hash()+"</td></tr>" +
      "  <tr><td>TableShow Security: </td><td>"+t.security()+"</td></tr>" +
      "  <tr><td>Author: </td><td>"+t.meta().author()+"</td></tr>" +
      "  <tr><td>Documentation URL: </td><td><a href=\""+t.meta().documentationURL()+"\">link to docs</a></td></tr>" +
      "  <tr><td>sample query: </td><td>"+sapmleQueryHtml+"</td></tr>" +
      "</table>"
      );
    }
  }, yqlParams);
View Full Code Here

Examples of org.w3c.jigsaw.html.HtmlGenerator.meta()

     */
    public Reply listThreads (Request request) {
  // enumerate all thread, and return a full thread listing:
  int    tcount   = Thread.activeCount() ;
  HtmlGenerator g = new HtmlGenerator ("Thread status") ;
  g.meta ("Refresh", getValue(ATTR_REFRESH, REFRESH_DEFAULT).toString());
  addStyleSheet(g);
  // Dump thread informations:
  Thread tarray[] = new Thread[tcount] ;
  Thread.enumerate (tarray) ;
  g.append ("<h1>Thread dump</h1>") ;
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.