当前位置: 首页>>代码示例>>Java>>正文


Java NotePadMeta.setLocation方法代码示例

本文整理汇总了Java中org.pentaho.di.core.NotePadMeta.setLocation方法的典型用法代码示例。如果您正苦于以下问题:Java NotePadMeta.setLocation方法的具体用法?Java NotePadMeta.setLocation怎么用?Java NotePadMeta.setLocation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.pentaho.di.core.NotePadMeta的用法示例。


在下文中一共展示了NotePadMeta.setLocation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: loadNotePadMeta

import org.pentaho.di.core.NotePadMeta; //导入方法依赖的package包/类
public NotePadMeta loadNotePadMeta(ObjectId id_note) throws KettleException {
	NotePadMeta note = new NotePadMeta();
	try {
		note.setObjectId(id_note);

		RowMetaAndData r = getNote(id_note);
		if (r != null) {
			note.setNote(r.getString("VALUE_STR", ""));
			int x = (int) r.getInteger("GUI_LOCATION_X", 0L);
			int y = (int) r.getInteger("GUI_LOCATION_Y", 0L);
			note.setLocation(new Point(x, y));
			note.setWidth((int) r.getInteger("GUI_LOCATION_WIDTH", 0L));
			note.setHeight((int) r.getInteger("GUI_LOCATION_HEIGHT", 0L));
			note.setSelected(false);

			// Font
			note.setFontName(r.getString("FONT_NAME", null));
			note.setFontSize((int) r.getInteger("FONT_SIZE", -1));
			note.setFontBold(r.getBoolean("FONT_BOLD", false));
			note.setFontItalic(r.getBoolean("FONT_ITALIC", false));

			// Font color
			note.setFontColorRed((int) r.getInteger("FONT_COLOR_RED", NotePadMeta.COLOR_RGB_BLACK_BLUE));
			note.setFontColorGreen((int) r.getInteger("FONT_COLOR_GREEN", NotePadMeta.COLOR_RGB_BLACK_GREEN));
			note.setFontColorBlue((int) r.getInteger("FONT_COLOR_BLUE", NotePadMeta.COLOR_RGB_BLACK_BLUE));

			// Background color
			note.setBackGroundColorRed((int) r.getInteger("FONT_BACK_GROUND_COLOR_RED", NotePadMeta.COLOR_RGB_DEFAULT_BG_RED));
			note.setBackGroundColorGreen((int) r.getInteger("FONT_BACK_GROUND_COLOR_GREEN", NotePadMeta.COLOR_RGB_DEFAULT_BG_GREEN));
			note.setBackGroundColorBlue((int) r.getInteger("FONT_BACK_GROUND_COLOR_BLUE", NotePadMeta.COLOR_RGB_DEFAULT_BG_BLUE));

			// Border color
			note.setBorderColorRed((int) r.getInteger("FONT_BORDER_COLOR_RED", NotePadMeta.COLOR_RGB_DEFAULT_BORDER_RED));
			note.setBorderColorGreen((int) r.getInteger("FONT_BORDER_COLOR_GREEN", NotePadMeta.COLOR_RGB_DEFAULT_BORDER_GREEN));
			note.setBorderColorBlue((int) r.getInteger("FONT_BORDER_COLOR_BLUE", NotePadMeta.COLOR_RGB_DEFAULT_BORDER_BLUE));
			note.setDrawShadow(r.getBoolean("DRAW_SHADOW", true));

			// Done!
			return note;
		} else {
			note.setObjectId(null);
			throw new KettleException("I couldn't find Notepad with id_note=" + id_note + " in the repository.");
		}
	} catch (KettleDatabaseException dbe) {
		note.setObjectId(null);
		throw new KettleException("Unable to load Notepad from repository (id_note=" + id_note + ")", dbe);
	}
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:49,代码来源:KettleDatabaseRepositoryNotePadDelegate.java


注:本文中的org.pentaho.di.core.NotePadMeta.setLocation方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。