當前位置: 首頁>>代碼示例>>Java>>正文


Java Arguments.create方法代碼示例

本文整理匯總了Java中org.cubeengine.dirigent.context.Arguments.create方法的典型用法代碼示例。如果您正苦於以下問題:Java Arguments.create方法的具體用法?Java Arguments.create怎麽用?Java Arguments.create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.cubeengine.dirigent.context.Arguments的用法示例。


在下文中一共展示了Arguments.create方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: toArgs

import org.cubeengine.dirigent.context.Arguments; //導入方法依賴的package包/類
public static Arguments toArgs(Object... args)
{
    List<String> values = new ArrayList<String>();
    Map<String, String> params = new HashMap<String, String>();
    for (final Object arg : args)
    {
        if (arg instanceof String)
        {
            values.add((String)arg);
        }
        else
        {
            String[] pair = (String[])arg;
            params.put(pair[0].toLowerCase(), pair[1]);
        }
    }
    return Arguments.create(values, params);
}
 
開發者ID:CubeEngine,項目名稱:Dirigent,代碼行數:19,代碼來源:TestHelper.java

示例2: parseArguments

import org.cubeengine.dirigent.context.Arguments; //導入方法依賴的package包/類
private static Arguments parseArguments(State s)
{
    List<String> values = null;
    Map<String, String> params = null;
    while (is(s, SECTION_SEP))
    {
        // skip SECTION_SEP
        ++s.offset;

        final String name = readUntil(s, PARAM_NAME_FOLLOW, false);
        if (is(s, VALUE_SEP))
        {
            // skip VALUE_SEP
            ++s.offset;
            if (name.isEmpty())
            {
                return null;
            }
            else
            {
                if (params == null)
                {
                    params = new HashMap<String, String>(1);
                }
                params.put(name.toLowerCase(), readUntil(s, SECTION_FOLLOW, false));
            }
        }
        else
        {
            if (values == null)
            {
                values = new ArrayList<String>(1);
            }
            values.add(name);
        }
    }
    return Arguments.create(values, params);
}
 
開發者ID:CubeEngine,項目名稱:Dirigent,代碼行數:39,代碼來源:Parser.java

示例3: testInvokerWithArguments

import org.cubeengine.dirigent.context.Arguments; //導入方法依賴的package包/類
@Test
public void testInvokerWithArguments()
{
    final String msg = "blub";
    final Arguments arguments = Arguments.create(singletonList("arg"), null);
    final Component component = new WithArguments().process(msg, Contexts.EMPTY, arguments);
    Assert.assertTrue(component instanceof TextComponent);
    Assert.assertEquals(msg + arguments, ((TextComponent)component).getText());
}
 
開發者ID:CubeEngine,項目名稱:Dirigent,代碼行數:10,代碼來源:ReflectedFormatterTest.java

示例4: testInvokerWithContextAndArguments

import org.cubeengine.dirigent.context.Arguments; //導入方法依賴的package包/類
@Test
public void testInvokerWithContextAndArguments()
{
    final String msg = "blub";
    final Locale locale = Locale.GERMANY;
    final Arguments arguments = Arguments.create(singletonList("arg"), null);
    final Component component = new WithContextAndArguments().process(msg, Contexts.createContext(locale), arguments);
    Assert.assertTrue(component instanceof TextComponent);
    Assert.assertEquals(msg + locale + arguments, ((TextComponent)component).getText());
}
 
開發者ID:CubeEngine,項目名稱:Dirigent,代碼行數:11,代碼來源:ReflectedFormatterTest.java

示例5: testInvokerWithArgumentsAndContext

import org.cubeengine.dirigent.context.Arguments; //導入方法依賴的package包/類
@Test
public void testInvokerWithArgumentsAndContext()
{
    final String msg = "blub";
    final Locale locale = Locale.GERMANY;
    final Arguments arguments = Arguments.create(singletonList("arg"), null);
    final Component component = new WithArgumentsAndContext().process(msg, Contexts.createContext(locale), arguments);
    Assert.assertTrue(component instanceof TextComponent);
    Assert.assertEquals(msg + arguments + locale, ((TextComponent)component).getText());
}
 
開發者ID:CubeEngine,項目名稱:Dirigent,代碼行數:11,代碼來源:ReflectedFormatterTest.java


注:本文中的org.cubeengine.dirigent.context.Arguments.create方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。