Examples of level()


Examples of l2p.gameserver.model.base.ClassId.level()

      {
        if(cid == ClassId.inspector)
        {
          continue;
        }
        if(cid.childOf(classId) && cid.level() == classId.level() + 1)
        {
          html.append("<td><center><button value=\"").append(cid.name()).append("\" action=\"bypass -h _bbscareerclass ").append(cid.getId()).append(" ").append(Config.CLASS_MASTERS_PRICE_LIST[jobLevel]).append("\" width=150 height=25 back=\"L2UI_CT1.Button_DF_Down\" fore=\"L2UI_CT1.Button_DF\"></center></td>");
        }
      }
      html.append("</tr></table></center>");
View Full Code Here

Examples of net.sf.l2j.gameserver.model.base.ClassId.level()

            while ((count == 0) && (classCheck != null))
            {
                for (ClassId cid : _classesToTeach)
                {
                    if (cid.level() != classCheck.level())
                        continue;

                    if (SkillTreeTable.getInstance().getAvailableSkills(player, cid).length == 0)
                        continue;
View Full Code Here

Examples of org.dedeler.template.annotation.Logged.level()

    Logged logged = joinPoint.getTarget().getClass().getAnnotation(Logged.class);

    final long endTime;
    long startTime = 0;

    before(joinPoint, logged.type(), logged.level());
    Object returnValue = null;
    startTime = System.nanoTime();
    returnValue = joinPoint.proceed();
    endTime = System.nanoTime();
    final long duration = (endTime - startTime) / 1000000;
View Full Code Here

Examples of org.dedeler.template.annotation.Logged.level()

    Object returnValue = null;
    startTime = System.nanoTime();
    returnValue = joinPoint.proceed();
    endTime = System.nanoTime();
    final long duration = (endTime - startTime) / 1000000;
    after(joinPoint, returnValue, duration, logged.type(), logged.level());
    return returnValue;
  }

  private void before(JoinPoint joinPoint, LogType type, LogLevel level) {
View Full Code Here

Examples of org.gocha.text.IndentStackWriter.level()

            throw new IllegalStateException("getTemplateInterface() == null");
       
        StringWriter sw = new StringWriter();
        IndentStackWriter writer = new IndentStackWriter(sw);
        writer.indent("  ");
        writer.level(0);
       
        if( !tmplItf.isInterface() )
            throw new IllegalStateException("getTemplateInterface() is not interface");
       
        defTemplates = new HashMap<String, String>();
View Full Code Here

Examples of org.jeecgframework.core.annotation.config.AutoMenu.level()

        //菜单名称必须填写,否则不进行菜单和菜单操作按钮的匹配
        if (StringUtil.isNotEmpty(autoMenu.name())) {
          StringBuffer menuKey = new StringBuffer();
          menuKey.append(autoMenu.name());
          menuKey.append(KEY_SPLIT);
          menuKey.append(autoMenu.level() == null ? "" : autoMenu.level());
          menuKey.append(KEY_SPLIT);
          menuKey.append(autoMenu.url() == null ? "" : autoMenu.url());
         
          TSFunction function = null;
          //判断菜单map的key是否包含当前key,不包含则插入一条菜单数据
View Full Code Here

Examples of org.jeecgframework.core.annotation.config.AutoMenu.level()

        //菜单名称必须填写,否则不进行菜单和菜单操作按钮的匹配
        if (StringUtil.isNotEmpty(autoMenu.name())) {
          StringBuffer menuKey = new StringBuffer();
          menuKey.append(autoMenu.name());
          menuKey.append(KEY_SPLIT);
          menuKey.append(autoMenu.level() == null ? "" : autoMenu.level());
          menuKey.append(KEY_SPLIT);
          menuKey.append(autoMenu.url() == null ? "" : autoMenu.url());
         
          TSFunction function = null;
          //判断菜单map的key是否包含当前key,不包含则插入一条菜单数据
View Full Code Here

Examples of org.jeecgframework.core.annotation.config.AutoMenu.level()

          //判断菜单map的key是否包含当前key,不包含则插入一条菜单数据
          if (!functionMap.containsKey(menuKey.toString())) {
            function = new TSFunction();
            function.setFunctionName(autoMenu.name());
            function.setFunctionIframe(null);
            function.setFunctionLevel(Short.valueOf(autoMenu.level()));
            function.setFunctionOrder(Integer.toString(autoMenu.order()));
            function.setFunctionUrl(autoMenu.url());
            function.setTSFunction(null);
           
            String iconId = autoMenu.icon();
View Full Code Here

Examples of org.jgroups.stack.Protocol.level()

    }

    protected static void setLevel(String level, JChannel ... channels) {
        for(JChannel ch: channels) {
            Protocol prot=ch.getProtocolStack().findProtocol(NAKACK2.class);
            prot.level(level);
        }
    }


    protected static class DiscardEveryOtherMulticastMessage extends Protocol {
View Full Code Here

Examples of org.jgroups.stack.Protocol.level()

    }

    protected static void setLevel(String level, JChannel ... channels) {
        for(JChannel ch: channels) {
            Protocol prot=ch.getProtocolStack().findProtocol(UNICAST3.class);
            prot.level(level);
        }
    }


    protected static class DiscardEveryOtherUnicastMessage extends Protocol {
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.