36 lines
		
	
	
		
			761 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			761 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * Decompiled with CFR 0_123.
 | |
|  */
 | |
| package com.zakscode.FormulaManager;
 | |
| 
 | |
| import java.io.Serializable;
 | |
| 
 | |
| public class ComponentQuantity
 | |
| implements Serializable {
 | |
|     private static final long serialVersionUID = 218124235517877938L;
 | |
|     private String component;
 | |
|     private double quantity;
 | |
| 
 | |
|     public ComponentQuantity(String component, double quantity) {
 | |
|         this.component = component;
 | |
|         this.quantity = quantity;
 | |
|     }
 | |
| 
 | |
|     public String getComponent() {
 | |
|         return this.component;
 | |
|     }
 | |
| 
 | |
|     public double getQuantity() {
 | |
|         return this.quantity;
 | |
|     }
 | |
| 
 | |
|     public void setComponent(String component) {
 | |
|         this.component = component;
 | |
|     }
 | |
| 
 | |
|     public void setQuantity(double quantity) {
 | |
|         this.quantity = quantity;
 | |
|     }
 | |
| }
 | |
| 
 |