Lines Matching full:objectvalue
448 public static double constructBase(double doubleValue, Object objectValue) {
449 Base b = new Base(doubleValue, objectValue);
480 public static double constructBase(int intValue, double doubleValue, Object objectValue) {
481 Base b = new Base(intValue, doubleValue, objectValue);
531 int intValue, double doubleValue, Object objectValue, String stringValue) {
532 Base b = new Base(intValue, doubleValue, objectValue, stringValue);
593 public static double constructBase(Object objectValue) {
594 Base b = new Base(objectValue);
758 public static double constructDerived(int intValue, double doubleValue, Object objectValue) {
759 Derived d = new Derived(intValue, doubleValue, objectValue);
782 int intValue, double doubleValue, Object objectValue, String stringValue) {
783 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue);
842 int intValue, double doubleValue, Object objectValue, float floatValue) {
843 Derived d = new Derived(intValue, doubleValue, objectValue, floatValue);