All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.havi.ui.event.HMouseCapabilities Maven / Gradle / Ivy

package org.havi.ui.event;

/*
 * Copyright 2000-2003 by HAVi, Inc. Java is a trademark of Sun
 * Microsystems, Inc. All rights reserved.  
 */

/**
   This class is used to describe the (basic) mouse capabilities of
   the platform. 

This class is not intended to be constructed by applications.


The parameters to the constructors are as follows, in cases where parameters are not used, then the constructor should use the default values.

Default parameter values exposed in the constructors

ParameterDescriptionDefault value Set methodGet method
None.

Default parameter values not exposed in the constructors

DescriptionDefault valueSet method Get method
None.
*/ public class HMouseCapabilities { /** * It is not intended that applications should directly construct * {@link org.havi.ui.event.HMouseCapabilities HMouseCapabilities} * objects. *

* Creates an {@link org.havi.ui.event.HMouseCapabilities * HMouseCapabilities} object. See the class description for * details of constructor parameters and default values. *

* This method is protected to allow the platform to override it * in a different package scope. */ protected HMouseCapabilities() { } /** * Determine if a mouse exists in the system. * * @return true if a mouse exists in the system, false otherwise. */ public static boolean getInputDeviceSupported() { return (true); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy