You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
389 B

package com.sothr.imagetools.ui.component
import javafx.scene.layout.VBox
import com.sothr.imagetools.engine.image.Image
/**
* ImageTile class that is a special VBox
*
* Created by drew on 8/22/14.
*/
class ImageTile extends VBox {
var imageData: Image = null
def getImageData: Image = {
imageData
}
def setImageData(image: Image) = {
this.imageData = image
}
}