]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.nativemem/src/org/simantics/nativemem/ProcessMemoryInfo.java
fb7a17a6126d8f3717bddac84559b95b4d729619
[simantics/platform.git] / bundles / org.simantics.nativemem / src / org / simantics / nativemem / ProcessMemoryInfo.java
1 /*******************************************************************************
2  * Copyright (c) 2016, 2017 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.nativemem;
13
14 /**
15  * Architecture-independent representation of a native processes memory usage
16  * state.
17  * 
18  * @author Tuukka Lehtonen
19  */
20 public interface ProcessMemoryInfo {
21
22     public String toHumanReadableString();
23
24 }