blob: 864b3440ca76fd0e7a5846d9d12d618dac85e073 [file] [log] [blame]
#region Apache License, Version 2.0
//
// 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.
//
#endregion
using System;
using System.Collections.Generic;
namespace NPanday.Plugin.Generator
{
/// <summary>
/// Description of JavaClass.
/// </summary>
[Serializable]
public class JavaClass
{
private string className;
private string packageName;
private string extendsClassName;
private List<String> comments;
private List<JavaField> javaFields;
private List<JavaMethod> javaMethods;
private ImportPackage importPackage;
public List<JavaMethod> JavaMethods
{
get
{
return javaMethods;
}
set
{
this.javaMethods = value;
}
}
public ImportPackage ImportPackage
{
get
{
return importPackage;
}
set
{
this.importPackage = value;
}
}
public string ClassName
{
get
{
return className;
}
set
{
this.className = value;
}
}
public List<String> Comments
{
get
{
return comments;
}
set
{
this.comments = value;
}
}
public List<JavaField> JavaFields
{
get
{
return javaFields;
}
set
{
this.javaFields = value;
}
}
public string ExtendsClassName
{
get
{
return extendsClassName;
}
set
{
this.extendsClassName = value;
}
}
public string PackageName
{
get
{
return packageName;
}
set
{
this.packageName = value;
}
}
}
}