📄 template.java
字号:
// EDITOR NOTE: Please set number of columns to 100 in ur editor.package com.openwave.mms.content;/** * This interface represents a template on which all slides in a multimedia * presentation are based. It contains two objects representing the attributes of * the text and image regions. */public interface Template { /** * Sets the attributes of the text region of the template. * * @param textAttributes The attributes of the text region of the template. */ public void setTextAttributes( RegionAttributes textAttributes ); /** * Gets the attributes of the text region of the template. * * @return The attributes of the text region of the template. */ public RegionAttributes getTextAttributes( ); /** * Sets the attributes of the image region of the template. * * @param imageAttributes The attributes of the image region of the template. */ public void setImageAttributes( RegionAttributes imageAttributes ); /** * Gets the attributes of the image region of the template. * * @return The attributes of the image region of the template. */ public RegionAttributes getImageAttributes( );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -