All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bimserver.models.store.MethodMetric Maven / Gradle / Ivy

Go to download

Base project for BIMserver plugin development. Some plugins mights also need the Shared library

There is a newer version: 2.0.0
Show newest version
/**
 * Copyright (C) 2009-2014 BIMserver.org
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */
package org.bimserver.models.store;

import java.util.Date;

import org.bimserver.emf.IdEObject;

/**
 * 
 * A representation of the model object 'Method Metric'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.store.MethodMetric#getName Name}
  • *
  • {@link org.bimserver.models.store.MethodMetric#getNrCalls Nr Calls}
  • *
  • {@link org.bimserver.models.store.MethodMetric#getLastCall Last Call}
  • *
  • {@link org.bimserver.models.store.MethodMetric#getAverageMs Average Ms}
  • *
  • {@link org.bimserver.models.store.MethodMetric#getShortestMs Shortest Ms}
  • *
  • {@link org.bimserver.models.store.MethodMetric#getLongestMs Longest Ms}
  • *
* * @see org.bimserver.models.store.StorePackage#getMethodMetric() * @model * @extends IdEObject * @generated */ public interface MethodMetric extends IdEObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.bimserver.models.store.StorePackage#getMethodMetric_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.bimserver.models.store.MethodMetric#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Nr Calls' attribute. * *

* If the meaning of the 'Nr Calls' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Nr Calls' attribute. * @see #setNrCalls(Long) * @see org.bimserver.models.store.StorePackage#getMethodMetric_NrCalls() * @model * @generated */ Long getNrCalls(); /** * Sets the value of the '{@link org.bimserver.models.store.MethodMetric#getNrCalls Nr Calls}' attribute. * * * @param value the new value of the 'Nr Calls' attribute. * @see #getNrCalls() * @generated */ void setNrCalls(Long value); /** * Returns the value of the 'Last Call' attribute. * *

* If the meaning of the 'Last Call' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Last Call' attribute. * @see #setLastCall(Date) * @see org.bimserver.models.store.StorePackage#getMethodMetric_LastCall() * @model * @generated */ Date getLastCall(); /** * Sets the value of the '{@link org.bimserver.models.store.MethodMetric#getLastCall Last Call}' attribute. * * * @param value the new value of the 'Last Call' attribute. * @see #getLastCall() * @generated */ void setLastCall(Date value); /** * Returns the value of the 'Average Ms' attribute. * *

* If the meaning of the 'Average Ms' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Average Ms' attribute. * @see #setAverageMs(Long) * @see org.bimserver.models.store.StorePackage#getMethodMetric_AverageMs() * @model * @generated */ Long getAverageMs(); /** * Sets the value of the '{@link org.bimserver.models.store.MethodMetric#getAverageMs Average Ms}' attribute. * * * @param value the new value of the 'Average Ms' attribute. * @see #getAverageMs() * @generated */ void setAverageMs(Long value); /** * Returns the value of the 'Shortest Ms' attribute. * *

* If the meaning of the 'Shortest Ms' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Shortest Ms' attribute. * @see #setShortestMs(Long) * @see org.bimserver.models.store.StorePackage#getMethodMetric_ShortestMs() * @model * @generated */ Long getShortestMs(); /** * Sets the value of the '{@link org.bimserver.models.store.MethodMetric#getShortestMs Shortest Ms}' attribute. * * * @param value the new value of the 'Shortest Ms' attribute. * @see #getShortestMs() * @generated */ void setShortestMs(Long value); /** * Returns the value of the 'Longest Ms' attribute. * *

* If the meaning of the 'Longest Ms' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Longest Ms' attribute. * @see #setLongestMs(Long) * @see org.bimserver.models.store.StorePackage#getMethodMetric_LongestMs() * @model * @generated */ Long getLongestMs(); /** * Sets the value of the '{@link org.bimserver.models.store.MethodMetric#getLongestMs Longest Ms}' attribute. * * * @param value the new value of the 'Longest Ms' attribute. * @see #getLongestMs() * @generated */ void setLongestMs(Long value); } // MethodMetric




© 2015 - 2025 Weber Informatics LLC | Privacy Policy