public void initMappings() throws Exception {
//initialize mapping variables used in this test
//create a DataFlavor from Button class
test_flavor1 = new DataFlavor(Class.forName("java.awt.Button"), "Button");
//create an Encoded String native using Button class MIME Type
String buttonMIME = test_flavor1.getMimeType();
test_encoded = SystemFlavorMap.encodeJavaMIMEType(buttonMIME);
//create a DataFlavor from the Encoded String native
test_flavor2 = SystemFlavorMap.decodeDataFlavor(test_encoded);
//create and initialize DataFlavor arrays
test_flavors_set = new DataFlavor[] {test_flavor1};
//create and initialize String native arrays
test_natives_set = new String[] {test_encoded};
}
GetNativesForNewFlavorTest.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:openjdk-jdk10
作者:
评论列表
文章目录