📄 propertymapping.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 7, 2004
* Time: 3:04:42 PM
*/
package com.sri.oaa2.mapper;
import java.beans.PropertyDescriptor;
/**
*
*/
public class PropertyMapping
{
private PropertyDescriptor property;
private Class type;
private IclMapper mapper;
public PropertyDescriptor getProperty()
{
return property;
}
public void setProperty(PropertyDescriptor property)
{
this.property = property;
}
public Class getType()
{
return type;
}
public void setType(Class type)
{
this.type = type;
}
public IclMapper getMapper()
{
return mapper;
}
public void setMapper(IclMapper mapper)
{
this.mapper = mapper;
}
public String toString()
{
return "PropertyMapping{" +
"property=" + property +
", type=" + type +
", mapper=" + mapper +
"}";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -