001package org.galaxyproject.gxformat2.v19_09; 002 003import org.galaxyproject.gxformat2.v19_09.utils.Savable; 004 005/** 006 * Auto-generated interface for 007 * <I>https://galaxyproject.org/gxformat2/gxformat2common#StepPosition</I><br> 008 * This interface is implemented by {@link StepPositionImpl}<br> 009 * 010 * <BLOCKQUOTE> 011 * 012 * This field specifies the location of the step's node when rendered in the workflow editor. 013 * 014 * </BLOCKQUOTE> 015 */ 016public interface StepPosition extends Savable { 017 /** 018 * Getter for property <I>https://galaxyproject.org/gxformat2/gxformat2common#StepPosition/top</I> 019 * <br> 020 * 021 * <BLOCKQUOTE> 022 * 023 * Relative vertical position of the step's node when rendered in the workflow editor. * 024 * 025 * </BLOCKQUOTE> 026 */ 027 Object getTop(); 028 /** 029 * Getter for property 030 * <I>https://galaxyproject.org/gxformat2/gxformat2common#StepPosition/left</I><br> 031 * 032 * <BLOCKQUOTE> 033 * 034 * Relative horizontal position of the step's node when rendered in the workflow editor. * 035 * 036 * </BLOCKQUOTE> 037 */ 038 Object getLeft(); 039}