/* Copyright (c) 2009 Miltiadis Allamanis
*
* The MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package app.randgen.backend;
import android.app.Activity;
import android.widget.EditText;
import android.widget.Toast;
/**
* A RandomGenerator that produces random integers
*/
public class UniformIntegerGenerator extends RandomGenerator {
/* {author=Miltiadis Allamanis} */
/**
* the smallest integer to be created
*/
protected int a;
/**
* the biggest integer to be created
*/
protected int b;
@Override
public String getDescription() {
return "Produces random integers that have the same (uniform) probability in a specified interval";
}
@Override
public String getName() {
return "Uniform Integer";
}
@Override
public String getNext() {
if (a == b)
return "Parameters not Set";// TODO: set for R.string?
return Integer.toString(a + this.generator.nextInt((b - a) + 1));
}
@Override
public int getParamsLayoutID() {
return app.randgen.R.id.uniformIntegerParams;
}
@Override
public boolean setParameters(final Activity myActivity) {
try {
EditText edit = (EditText) myActivity
.findViewById(app.randgen.R.id.uniformLow);
a = Integer.parseInt(edit.getText().toString());
edit = (EditText) myActivity
.findViewById(app.randgen.R.id.uniformHigh);
b = Integer.parseInt(edit.getText().toString());
return true;
} catch (Exception e) {
Toast error = Toast.makeText(myActivity,
app.randgen.R.string.paramError, Toast.LENGTH_SHORT);
error.show();
return false;
}
}
}