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

📄 mappingcondition.java

📁 METAmorphoses is a system for flexible and easy-to-use generation of RDF metadata directly from a re
💻 JAVA
字号:
package cz.cvut.felk.cs.metamorphoses.mapping;/** * <p>description of this class is missing!</p> * <p> * <b>History:</b><br/> * Created: 2.8.2004<br/> * Last change: 2.8.2004<br/> * </p> * @author Martin Svihla (martin@svihla.net) */public class MappingCondition {	private String name;	private String whereSql;	private String tableSql;	private String comment;	public MappingCondition(		String name,		String whereSql,		String tableSql,		String comment) {		this.name = name;		this.whereSql = whereSql;		this.tableSql = tableSql;		this.comment = comment;	}	/**	 * @return	 */	public String getComment() {		return comment;	}	/**	 * @return	 */	public String getName() {		return name;	}	/**	 * @return	 */	public String getTableSql() {		return tableSql;	}	/**	 * @return	 */	public String getWhereSql() {		return whereSql;	}}

⌨️ 快捷键说明

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