/******************************************************************************* * See the NOTICE file distributed with this work for additional information * regarding copyright ownership. * * Licensed 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 hr.fer.zemris.vhdllab.applets.editor.newtb.enums; public class Messages { public static String signalLen0 = "Number of periods must be greater then zero."; public static String step0 = "Step must be greater then zero."; public static String signalDimToSmallNum = "Signal dimension is too small to represent desired number!"; public static String mustBePositive = " must be positive!"; public static String initLenPos = "Initial delay" + mustBePositive; public static String pulseLenPos = "Pulse length" + mustBePositive; public static String randomPos = "Number of periods must be greater then zero."; public static String noNumber = "No number was added!"; public static String wrongBinaryFormat = "Wrong format of a binary number."; public static String wrongHexFormat = "Wrong format of a hex number."; public static String wrongNumFormat = "Wrong format of a number."; public static String countBorder0 = "Count borders must be positive or zero!"; }