當前位置: 首頁>>代碼示例>>Java>>正文


Java DocumentFactory類代碼示例

本文整理匯總了Java中org.pentaho.ui.xul.dom.DocumentFactory的典型用法代碼示例。如果您正苦於以下問題:Java DocumentFactory類的具體用法?Java DocumentFactory怎麽用?Java DocumentFactory使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


DocumentFactory類屬於org.pentaho.ui.xul.dom包,在下文中一共展示了DocumentFactory類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: setUp

import org.pentaho.ui.xul.dom.DocumentFactory; //導入依賴的package包/類
@Before
public void setUp() throws Exception {
  controller = spy( new GitController() );
  controller.setAuthorName( "test <[email protected]>" );
  controller.setCommitMessage( "test" );
  uiGit = mock( UIGit.class );
  controller.setVCS( uiGit );
  doNothing().when( controller ).fireSourceChanged();
  doReturn( false ).when( controller ).anyChangedTabs();
  doNothing().when( controller ).addGraph( any( EngineMetaInterface.class ), anyString() );
  doNothing().when( controller ).loadMainPerspective();

  DocumentFactory.registerElementClass( ElementDom4J.class );
  document = mock( Document.class );
  XulDomContainer xulDomContainer = mock( XulDomContainer.class );
  when( xulDomContainer.getDocumentRoot() ).thenReturn( document );
  controller.setXulDomContainer( xulDomContainer );
}
 
開發者ID:HiromuHota,項目名稱:pdi-git-plugin,代碼行數:19,代碼來源:GitControllerTest.java

示例2: setUp

import org.pentaho.ui.xul.dom.DocumentFactory; //導入依賴的package包/類
@Before
public void setUp() throws Exception {
  DocumentFactory.registerElementClass( ElementDom4J.class );

  controller = new BrowseController();

  controller.setRepositoryDirectory( mock( UIRepositoryDirectory.class ) );

  directoryMap = new HashMap<>( 8 );
  controller.setDirMap( directoryMap );

  document = mock( Document.class );
  XulDomContainer xulDomContainer = mock( XulDomContainer.class );
  when( xulDomContainer.getDocumentRoot() ).thenReturn( document );
  controller.setXulDomContainer( xulDomContainer );

  UIRepositoryDirectory someDirectory = mock( UIRepositoryDirectory.class );
  selectedFolder = mock( UIRepositoryDirectory.class );
  when( selectedFolder.createFolder( FOLDER_NAME ) ).thenReturn( someDirectory );

  XulTree folderTree = mock( XulTree.class );
  when( folderTree.getSelectedItems() ).thenReturn( Collections.<Object>singleton( selectedFolder ) );
  controller.setFolderTree( folderTree );

  directoryBinding = mock( Binding.class );
  controller.setDirectoryBinding( directoryBinding );

  selectedItemsBinding = mock( Binding.class );
  controller.setSelectedItemsBinding( selectedItemsBinding );
}
 
開發者ID:pentaho,項目名稱:pentaho-kettle,代碼行數:31,代碼來源:BrowseControllerTest.java


注:本文中的org.pentaho.ui.xul.dom.DocumentFactory類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。