Package com.github.mike10004.xvfbmanager
Class XvfbConfig
- java.lang.Object
-
- com.github.mike10004.xvfbmanager.XvfbConfig
-
public class XvfbConfig extends Object
Configuration for Xvfb execution.
-
-
Constructor Summary
Constructors Constructor Description XvfbConfig(String geometry)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XvfbConfiggetDefault()Default configuration instance.StringtoString()
-
-
-
Field Detail
-
geometry
public final String geometry
Geometry of the screen. This value is specified in the-screen 0 <geometry>option. The syntax is WxHxD, where W and H are positive integer width and height values, respectively, and D is a depth value. Supported values for D include "8", "24", and "24+32". A fine choice for this field is1280x1024x8or1280x1024x24+32.
-
-
Constructor Detail
-
XvfbConfig
public XvfbConfig(String geometry)
-
-
Method Detail
-
getDefault
public static XvfbConfig getDefault()
Default configuration instance. This differs from the1280x1024x8configuration thatXvfbuses by default, stated in the manual.
-
-