⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iclmapping.java

📁 SRI international 发布的OAA框架软件
💻 JAVA
字号:
// $CALOLSI$
/*
 * #=========================================================================
 * # Copyright 2004 SRI International.  All rights reserved.
 * #
 * # The material contained in this file is confidential and proprietary to SRI
 * # International and may not be reproduced, published, or disclosed to others
 * # without authorization from SRI International.
 * #
 * # DISCLAIMER OF WARRANTIES
 * #
 * # SRI International MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE
 * # SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT
 * # LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * # PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SRI International SHALL NOT BE
 * # LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
 * # OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES
 * #=========================================================================
 * Author : evans
 * Date: May 6, 2004
 * Time: 2:34:58 PM
 */
package com.sri.oaa2.mapper;

import java.util.Arrays;

/**
 *
 */
public class IclMapping
{
    private FunctionMapping[] functionMappings;
    private ClassMapping[] classMappings;

    public FunctionMapping[] getFunctionMappings()
    {
        return functionMappings;
    }

    public void setFunctionMappings(FunctionMapping[] functionMappings)
    {
        this.functionMappings = functionMappings;
    }

    public ClassMapping[] getClassMappings()
    {
        return classMappings;
    }

    public void setClassMappings(ClassMapping[] classMappings)
    {
        this.classMappings = classMappings;
    }

    public String toString()
    {
        return "IclMapping{" +
                "functionMappings=" + (functionMappings == null ? null : Arrays.asList(functionMappings)) +
                ", classMappings=" + (classMappings == null ? null : Arrays.asList(classMappings)) +
                "}";
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -