/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ package c10n.testproject.java; import c10n.annotations.En; import c10n.annotations.Ja; import c10n.annotations.Ru; /** * @author rodion */ public interface Usage { @En("C10N simple java test project\n" + "Synopsis:\n" + "\t<Main> [options]\n" + "Options:\n" + "\t--locale\t\tUse the specified locale\n" + "\t--action\t\tRun the specified action\n" + "\t--help\t\tShow this help message and exit\n") @Ja("C10N邁。譏笛ava繝�せ繝医⊃繝励Ο繧ク繧ァ繧ッ繝�n" + "讎りヲ�\n" + "\t<Main> [options]\n" + "繧ェ繝励す繝ァ繝ウ:\n" + "\t--locale\t\t謖�ョ壹�繝ュ繧ア繝シ繧九r菴ソ逕ィ縺吶k\n" + "\t--action\t\t謖�ョ壹�繧「繧ッ繧キ繝ァ繝ウ繧貞ョ溯。後☆繧欺n" + "\t--help\t\t繝倥Ν繝励Γ繝�そ繝シ繧ク繧定。ィ遉コ\n") @Ru("ミ湲�セム�ひセミケ ムひオム��ミソム�セム災コム�ミエミサム�C10N\n" + "ミ榧アミキミセム�\n" + "\t<Main> [options]\n" + "ミ榧ソム�クミク:\n" + "\t--locale\t\tミ佯�ソミセミサム糊キミイミームび�ミエミーミスミスムτ�ミサミセミコミーミサム圭n" + "\t--action\t\tミ佯�ソミセミサミスミクムび�ムσコミーミキミーミスミスミセミオ ミエミオミケム�ひイミクミオ\n" + "\t--help\t\tミ渙セミコミーミキミームび�ミソミセミシミセム禾圭n") String usage(); }