상속: NClass.Core.EnumValue
예제 #1
0
        /// <exception cref="BadSyntaxException">
        /// The name does not fit to the syntax.
        /// </exception>
        /// <exception cref="ReservedNameException">
        /// The name is a reserved name.
        /// </exception>
        public override EnumValue AddValue(string declaration)
        {
            EnumValue newValue = new CSharpEnumValue(declaration);

            AddValue(newValue);
            return(newValue);
        }
예제 #2
0
        /// <exception cref="BadSyntaxException">
        /// The name does not fit to the syntax.
        /// </exception>
        /// <exception cref="ReservedNameException">
        /// The name is a reserved name.
        /// </exception>
        public override EnumValue ModifyValue(EnumValue value, string declaration)
        {
            EnumValue newValue = new CSharpEnumValue(declaration);

            ChangeValue(value, newValue);
            return(value);
        }
예제 #3
0
		/// <exception cref="BadSyntaxException">
		/// The name does not fit to the syntax.
		/// </exception>
		/// <exception cref="ReservedNameException">
		/// The name is a reserved name.
		/// </exception>
		public override EnumValue AddValue(string declaration)
		{
			EnumValue newValue = new CSharpEnumValue(declaration);

			AddValue(newValue);
			return newValue;
		}
예제 #4
0
		/// <exception cref="BadSyntaxException">
		/// The name does not fit to the syntax.
		/// </exception>
		/// <exception cref="ReservedNameException">
		/// The name is a reserved name.
		/// </exception>
		public override EnumValue ModifyValue(EnumValue value, string declaration)
		{
			EnumValue newValue = new CSharpEnumValue(declaration);

			if (ChangeValue(value, newValue))
				return newValue;
			else
				return value;
		}