Tabnine Logo
ScreenDockProperty.setSuccessor
Code IndexAdd Tabnine to your IDE (free)

How to use
setSuccessor
method
in
bibliothek.gui.dock.station.screen.ScreenDockProperty

Best Java code snippets using bibliothek.gui.dock.station.screen.ScreenDockProperty.setSuccessor (Showing top 6 results out of 315)

origin: org.opentcs.thirdparty.dockingframes/docking-frames-common

@Override
public DockableProperty findProperty( DockableProperty successor ){
  ScreenDockProperty screen = new ScreenDockProperty( x, y, width, height );
  screen.setSuccessor( successor );
  if( parent != null ){
    return parent.findProperty( screen );
  }
  return screen;
}

origin: xyz.cofe/docking-frames-common

@Override
public DockableProperty findProperty( DockableProperty successor ){
  ScreenDockProperty screen = new ScreenDockProperty( x, y, width, height );
  screen.setSuccessor( successor );
  if( parent != null ){
    return parent.findProperty( screen );
  }
  return screen;
}

origin: xyz.cofe/docking-frames-common

@Override
public DockableProperty findProperty( DockableProperty successor ){
  ScreenDockProperty screen = new ScreenDockProperty( getX(), getY(), getWidth(), getHeight(), null, true );
  screen.setSuccessor( successor );
  
  CLocation parent = getParent();
  if( parent != null ){
    return parent.findProperty( screen );
  }
  
  return screen;
}

origin: org.opentcs.thirdparty.dockingframes/docking-frames-common

@Override
public DockableProperty findProperty( DockableProperty successor ){
  ScreenDockProperty screen = new ScreenDockProperty( getX(), getY(), getWidth(), getHeight(), null, true );
  screen.setSuccessor( successor );
  
  CLocation parent = getParent();
  if( parent != null ){
    return parent.findProperty( screen );
  }
  
  return screen;
}
 
origin: xyz.cofe/docking-frames-core

public void aside( AsideRequest request ){
  DockableProperty location = request.getLocation();
  if( location instanceof ScreenDockProperty ){
    ScreenDockProperty screenLocation = (ScreenDockProperty)location;
    DockablePlaceholderList<ScreenDockWindowHandle>.Item item = getItem( screenLocation );
    if( item != null ){
      delegate().combine( item, getCombiner(), request );
    }
    
    ScreenDockProperty copy = screenLocation.copy();
    copy.setSuccessor( null );
    copy.setPlaceholder( request.getPlaceholder() );
    request.answer( copy );
  }
}

origin: xyz.cofe/docking-frames-core

replacement.setSuccessor( property.getSuccessor() );
args.setProperty( replacement );
args.setBoundsIncludeWindow( true );
bibliothek.gui.dock.station.screenScreenDockPropertysetSuccessor

Popular methods of ScreenDockProperty

  • <init>
    Constructs a new property
  • getHeight
    Gets the height of the dialog.
  • getWidth
    Gets the width of the dialog.
  • getX
    Gets the x-coordinate of the dialog.
  • getY
    Gets the y-coordinate of the dialog
  • isFullscreen
    Tells whether this location describes an element that is in fullscreen mode.
  • getSuccessor
  • setFullscreen
    Sets the fullscreen mode
  • copy
  • getPlaceholder
    Gets the name of this location.
  • setPlaceholder
    Sets the name of this location.
  • setPlaceholder

Popular in Java

  • Parsing JSON documents to java classes using gson
  • findViewById (Activity)
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (Timer)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now