Package com.opera.core.systems.common.collect

Examples of com.opera.core.systems.common.collect.CaseInsensitiveStringSet


    Response response = executeMessage(ExecMessage.GET_ACTION_LIST, null);
    ActionInfoList.Builder builder = ActionInfoList.newBuilder();
    buildPayload(response, builder);
    ActionInfoList infoList = builder.build();

    Set<String> actions = new CaseInsensitiveStringSet();
    for (ActionInfo info : infoList.getActionInfoListList()) {
      actions.add(info.getName());
    }
    return actions;
  }
View Full Code Here

TOP

Related Classes of com.opera.core.systems.common.collect.CaseInsensitiveStringSet

Copyright © 2018 www.massapicom. 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.