Class ProbeRepresentative
- java.lang.Object
-
- edu.kit.ipd.sdq.eventsim.instrumentation.description.core.ProbeRepresentative
-
- Type Parameters:
M
- The type of the element to be probed, meaning this probe can be applied to all elements of a type extendingM
.
public class ProbeRepresentative extends Object
Represents a probe which is capable to measure a certain property for a certain type.
-
-
Constructor Summary
Constructors Constructor Description ProbeRepresentative()
ProbeRepresentative(String measuredProperty, Class<?> probedType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getMeasuredProperty()
Class<?>
getProbedType()
int
hashCode()
boolean
isApplicableTo(Class<?> type)
void
setMeasuredProperty(String measuredProperty)
void
setProbedType(Class<?> typeUnderMeasurement)
-
-
-
Method Detail
-
getProbedType
public Class<?> getProbedType()
-
setProbedType
public void setProbedType(Class<?> typeUnderMeasurement)
-
getMeasuredProperty
public String getMeasuredProperty()
-
setMeasuredProperty
public void setMeasuredProperty(String measuredProperty)
-
isApplicableTo
public boolean isApplicableTo(Class<?> type)
-
-