Codota Logo
JobEntryColumnsExist.getSchemaname
Code IndexAdd Codota to your IDE (free)

How to use
getSchemaname
method
in
org.pentaho.di.job.entries.columnsexist.JobEntryColumnsExist

Best Java code snippets using org.pentaho.di.job.entries.columnsexist.JobEntryColumnsExist.getSchemaname (Showing top 1 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: pentaho/pentaho-kettle

/**
 * Copy information from the meta-data input to the dialog fields.
 */
public void getData() {
 if ( jobEntry.getName() != null ) {
  wName.setText( jobEntry.getName() );
 }
 if ( jobEntry.getTablename() != null ) {
  wTablename.setText( jobEntry.getTablename() );
 }
 if ( jobEntry.getSchemaname() != null ) {
  wSchemaname.setText( jobEntry.getSchemaname() );
 }
 if ( jobEntry.getDatabase() != null ) {
  wConnection.setText( jobEntry.getDatabase().getName() );
 }
 if ( jobEntry.getArguments() != null ) {
  for ( int i = 0; i < jobEntry.getArguments().length; i++ ) {
   TableItem ti = wFields.table.getItem( i );
   if ( jobEntry.getArguments()[i] != null ) {
    ti.setText( 1, jobEntry.getArguments()[i] );
   }
  }
  wFields.setRowNums();
  wFields.optWidth( true );
 }
 wName.selectAll();
 wName.setFocus();
}
org.pentaho.di.job.entries.columnsexistJobEntryColumnsExistgetSchemaname

Popular methods of JobEntryColumnsExist

  • getNewDatabaseFromMeta
  • setArguments
  • setDatabase
  • setSchemaname
  • setTablename
  • <init>
  • allocate
  • environmentSubstitute
  • execute
  • getArguments
  • getDatabase
  • getName
  • getDatabase,
  • getName,
  • getObjectId,
  • getTablename,
  • hasChanged,
  • logDetailed,
  • logError,
  • setChanged,
  • setName

Popular in Java

  • Creating JSON documents from java classes using gson
  • onCreateOptionsMenu (Activity)
  • findViewById (Activity)
  • orElseThrow (Optional)
  • Kernel (java.awt.image)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now