Home | History | Annotate | Download | only in bridge

Lines Matching refs:properties

28  * A message containing a selection of {@link System#getProperties() system properties} from the
34 private final ImmutableMap<String, String> properties;
40 public VmPropertiesLogMessage(ImmutableMap<String, String> properties) {
41 this.properties = checkNotNull(properties);
44 public ImmutableMap<String, String> properties() {
45 return properties;
54 return Objects.hashCode(properties);
63 return this.properties.equals(that.properties);