polishing

This commit is contained in:
Juergen Hoeller
2011-11-28 18:38:26 +00:00
parent 81e9f6cc2c
commit aa7fcb5431
3 changed files with 10 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2010 the original author or authors.
* Copyright 2002-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,10 +31,12 @@ public class TypedValue {
public static final TypedValue NULL = new TypedValue(null);
private final Object value;
private TypeDescriptor typeDescriptor;
/**
* Create a TypedValue for a simple object. The type descriptor is inferred
* from the object, so no generic information is preserved.
@@ -42,8 +44,7 @@ public class TypedValue {
*/
public TypedValue(Object value) {
this.value = value;
// initialized when/if requested
this.typeDescriptor = null;
this.typeDescriptor = null; // initialized when/if requested
}
/**
@@ -56,6 +57,7 @@ public class TypedValue {
this.typeDescriptor = typeDescriptor;
}
public Object getValue() {
return this.value;
}
@@ -67,6 +69,7 @@ public class TypedValue {
return this.typeDescriptor;
}
@Override
public String toString() {
StringBuilder str = new StringBuilder();