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

com.greenpepper.samples.application.calculator.Division Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
/**
 * $Archive: $
 *
 * Copyright 2005 (C) Pyxis Technologies Inc.
 * All Rights Reserved.
 *
 * This software is the confidential and proprietary information of
 * Pyxis Technologies inc. ("Confidential Information"). You shall not
 * disclose such Confidential Information and shall use it only in
 * accordance with the terms of the license agreement you entered into
 * with Pyxis Technologies.
 *
 * http://www.pyxis-tech.com
 */
package com.greenpepper.samples.application.calculator;

/**
 * Demo SUT Application.
 *
 * @author oaouattara
 * @version $Id: $Id
 */
public class Division
{
    public double dividend;
    public double divisor;

    /**
     * 

quotient.

* * @return a double. */ public double quotient() { return dividend / divisor; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy