package javax.microedition.location;

public class Orientation
{

 public Orientation(float, boolean, float, float)
 {
 }
 
 public float getCompassAzimuth()
 {
  return 0.0f;
 }
 
 public boolean isOrientationMagnetic()
 {
  return false;
 }
 
 public float getPitch()
 {
  return 0.0f;
 }
 
 public float getRoll()
 {
  return 0.0f;
 }
 
 public static Orientation getOrientation() throws LocationException
 {
  return null;
 }
 
}