Declarations, Initialization and Scoping

Question 1 of 29

Given the following interface declarations, what is the correct way for "IShape.shapeOriginX" to have the same value as "IDraw.originX" ?
public interface IDraw
{

	public double originX = 0;

}

public interface IShape extends IDraw
{
	 public double shapeOriginX = ????
}