Android Open Source - Calculator-for-Android Memory






From Project

Back to project page Calculator-for-Android.

License

The source code is released under:

Apache License

If you think the Android project Calculator-for-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

//   Copyright 2012 Digipom Inc.
///*from  w w  w.j a  va  2s.co m*/
//   Licensed under the Apache License, Version 2.0 (the "License");
//   you may not use this file except in compliance with the License.
//   You may obtain a copy of the License at
//
//       http://www.apache.org/licenses/LICENSE-2.0
//
//   Unless required by applicable law or agreed to in writing, software
//   distributed under the License is distributed on an "AS IS" BASIS,
//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//   See the License for the specific language governing permissions and
//   limitations under the License.

package com.digipom.calculator.logic;

import java.math.BigDecimal;
import java.util.Stack;

import android.util.Log;

import com.digipom.calculator.config.LoggerConfig;

class Memory {
  private static final String TAG = "Memory";
  private final Stack<BigDecimal> answerStack = new Stack<BigDecimal>();
  private final String[] storedExpressions = new String[10];

  void clearAnswers() {
    answerStack.clear();    
  }  

  BigDecimal getMostRecentAnswer() {
    if (answerStack.isEmpty()) {
      return BigDecimal.ZERO;
    } else {
      return answerStack.peek();
    }
  }

  void addAnswer(BigDecimal result) {
    answerStack.push(result);
  }

  void addExpressionToStore(int position, String expression) {
    if (position < 0 || position >= storedExpressions.length) {
      if (LoggerConfig.ON) {
        Log.w(TAG, "addToStore(): Invalid position: " + position);
      }
    } else {
      storedExpressions[position] = expression;
    }
  }
  
  String readExpressionFromStore(int position) {
    if (position < 0 || position >= storedExpressions.length) {
      if (LoggerConfig.ON) {
        Log.w(TAG, "addToStore(): Invalid position: " + position);
      }
      
      return "";
    } else {      
      return storedExpressions[position] == null ? "" : storedExpressions[position];
    }
  }
  
  int getStoreSize() {
    return storedExpressions.length;
  }
}




Java Source Code List

com.digipom.android.library.evaluator.BigDecimalPostfixEvaluator.java
com.digipom.android.library.evaluator.DoublePostfixEvaluator.java
com.digipom.android.library.evaluator.FloatPostfixEvaluator.java
com.digipom.android.library.evaluator.NumberPrecision.java
com.digipom.android.library.evaluator.PostfixEvaluator.java
com.digipom.android.library.evaluator.ShuntingYardParser.java
com.digipom.android.library.evaluator.TestBigDecimalEvaluator.java
com.digipom.android.library.evaluator.TestDoubleEvaluator.java
com.digipom.android.library.evaluator.TestFloatEvaluator.java
com.digipom.android.library.evaluator.TestShuntingYardParser.java
com.digipom.android.library.evaluator.builder.ExpressionBuilder.java
com.digipom.android.library.evaluator.builder.StringNumberLiteral.java
com.digipom.android.library.evaluator.exception.ParseException.java
com.digipom.android.library.evaluator.lexer.BigDecimalNumberLiteral.java
com.digipom.android.library.evaluator.lexer.DoubleNumberLiteral.java
com.digipom.android.library.evaluator.lexer.FloatNumberLiteral.java
com.digipom.android.library.evaluator.lexer.Identifier.java
com.digipom.android.library.evaluator.lexer.Lexer.java
com.digipom.android.library.evaluator.lexer.NumberLiteral.java
com.digipom.android.library.evaluator.lexer.Operator.java
com.digipom.android.library.evaluator.lexer.Parenthesis.java
com.digipom.android.library.evaluator.lexer.PredefinedFunction.java
com.digipom.android.library.evaluator.lexer.Separator.java
com.digipom.android.library.evaluator.lexer.TestLexer.java
com.digipom.android.library.evaluator.lexer.Token.java
com.digipom.android.library.util.ObjectUtils.java
com.digipom.android.library.util.TestObjectUtils.java
com.digipom.calculator.config.LoggerConfig.java
com.digipom.calculator.logic.Calculator.java
com.digipom.calculator.logic.Memory.java
com.digipom.calculator.ui.CalculatorActivity.java