View Javadoc
1   /**
2    * Oshi (https://github.com/dblock/oshi)
3    * 
4    * Copyright (c) 2010 - 2015 The Oshi Project Team
5    * 
6    * All rights reserved. This program and the accompanying materials
7    * are made available under the terms of the Eclipse Public License v1.0
8    * which accompanies this distribution, and is available at
9    * http://www.eclipse.org/legal/epl-v10.html
10   * 
11   * Contributors:
12   * dblock[at]dblock[dot]org
13   * alessandro[at]perucchi[dot]org
14   * widdis[at]gmail[dot]com
15   * https://github.com/dblock/oshi/graphs/contributors
16   */
17  package oshi.software.os;
18  
19  /**
20   * A process is an instance of a computer program that is being executed. It
21   * contains the program code and its current activity. Depending on the
22   * operating system (OS), a process may be made up of multiple threads of
23   * execution that execute instructions concurrently.
24   * 
25   * @author dblock[at]dblock[dot]org
26   */
27  public interface Process {
28  	// TODO Build this out
29  }