Examples of className()


Examples of com.dragome.compiler.type.Signature.className()

    project.currentGeneratedMethods= 0;

    if (DragomeJsCompiler.compiler.getSingleEntryPoint() != null)
    {
      Signature signature= project.getSignature(DragomeJsCompiler.compiler.getSingleEntryPoint());
      ClassUnit clazz= project.getClassUnit(signature.className());
      clazz.write(0, writer);
    }
    else
    {
      ClassUnit object= project.getJavaLangObject();
View Full Code Here

Examples of com.google.caliper.config.InstrumentConfig.className()

        @Provides @InstrumentName String provideInstrumentName() {
          return instrumentName;
        }
      });
      String className = instrumentConfig.className();
      try {
        builder.add(instrumentInjector.getInstance(
            Util.lenientClassForName(className).asSubclass(Instrument.class)));
      } catch (ClassNotFoundException e) {
        throw new InvalidCommandException("Cannot find instrument class '%s'", className);
View Full Code Here

Examples of com.google.gwt.dev.util.JsniRef.className()

            new NoSuchFieldError(jsniMemberRef));
        return -1;
      }

      // Do the lookup by class name.
      String className = parsed.className();
      DispatchClassInfo dispClassInfo = getClassInfoFromClassName(className);
      if (dispClassInfo != null) {
        String memberName = parsed.memberSignature();

        /*
 
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.TableCellBuilder.className()

      }

      private void buildExpandColumn(RObjectEntry rowValue, TableRowBuilder row)
      {
         TableCellBuilder expandCol = row.startTD();
         expandCol.className(style_.expandCol());
         renderCell(expandCol, createContext(0), objectExpandColumn_, rowValue);
         expandCol.endTD();
      }

      private void buildNameColumn(RObjectEntry rowValue, TableRowBuilder row)
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.TableCellBuilder.className()

            styleName += (" " + style_.clickableCol());
         }
         String size = rowValue.rObject.getSize() > 0 ?
                              ", " + rowValue.rObject.getSize() + " bytes" :
                              "";
         nameCol.className(styleName);
         nameCol.title(
                 rowValue.rObject.getName() +
                 " (" + rowValue.rObject.getType() + size + ")");
         renderCell(nameCol, createContext(1), objectNameColumn_, rowValue);
         nameCol.endTD();
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.TableCellBuilder.className()

         if (rowValue.getCategory() == RObjectEntry.Categories.Data)
         {
            descriptionStyle += (" " +
                                ThemeStyles.INSTANCE.environmentDataFrameCol());
         }
         descCol.className(descriptionStyle);
         renderCell(descCol, createContext(2), objectDescriptionColumn_, rowValue);
         descCol.endTD();
      }

      private void buildRowHeader(RObjectEntry rowValue, int absRowIndex)
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.TableCellBuilder.className()

         TableRowBuilder row = startRow();
        
         if (selectionEnabled())
         {
            TableCellBuilder selectAll = row.startTH();
            selectAll.className(style_.objectGridHeader() + " " +
                                style_.checkColumn());
            renderHeader(selectAll, new Cell.Context(0, 0, null), checkHeader_);
            selectAll.end();
         }
  
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.TableCellBuilder.className()

         // Render a header for each column
         for (int i = 0; i < columns_.size(); i++)
         {
            ObjectGridColumn col = columns_.get(i);
            TableCellBuilder cell = row.startTH();
            cell.className(style_.objectGridHeader());
            Cell.Context context = new Cell.Context(0, i, null);
            renderSortableHeader(cell, context, col.getHeader(),
                  i == host_.getSortColumn(),
                  host_.getAscendingSort());
            cell.endTH();
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.TableCellBuilder.className()

         TableRowBuilder row = startRow();

         if (selectionEnabled())
         {
            TableCellBuilder check = row.startTD();
            check.className(style_.checkColumn());
            check.style().width(5, Unit.PCT);
            renderCell(check, createContext(0), checkColumn_, rowValue);
            check.endTD();
         }
View Full Code Here

Examples of com.sun.jdi.event.ClassUnloadEvent.className()

                        ReferenceType refType = cpe.referenceType();
                        logClazz.debug("Loading: " + refType.name() + " [cl:" + refType.classLoader()+"]");
                        loadClassDebug(refType, cpe.thread());
                    } else if(evt instanceof ClassUnloadEvent) {
                      ClassUnloadEvent cue = (ClassUnloadEvent) evt;
                      logClazz.debug("Unloading: " + cue.className());
                    } else if(evt instanceof ThreadStartEvent) {
                      ThreadStartEvent tse = (ThreadStartEvent) evt;
                      threadEventDebug(tse.thread(), "Thread Start");
                      //logThread.debug("Thread Start: " + tse.thread().name());
                    } else if(evt instanceof ThreadDeathEvent) {
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.