This repository has been archived by the owner on Mar 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adcionando observador de execucão com implementação básica
- Loading branch information
Luiz Fernando Noschang
committed
Apr 11, 2016
1 parent
0c45271
commit fd99810
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
src/br/univali/portugol/nucleo/execucao/ObservadorExecucaoBasico.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package br.univali.portugol.nucleo.execucao; | ||
|
||
import br.univali.portugol.nucleo.Programa; | ||
import br.univali.portugol.nucleo.simbolos.Simbolo; | ||
import java.util.List; | ||
|
||
/** | ||
* | ||
* @author Luiz Fernando Noschang | ||
*/ | ||
public abstract class ObservadorExecucaoBasico implements ObservadorExecucao | ||
{ | ||
@Override | ||
public void execucaoIniciada(Programa programa) | ||
{ | ||
|
||
} | ||
|
||
@Override | ||
public void execucaoEncerrada(Programa programa, ResultadoExecucao resultadoExecucao) | ||
{ | ||
|
||
} | ||
|
||
@Override | ||
public void highlightLinha(int linha) | ||
{ | ||
|
||
} | ||
|
||
@Override | ||
public void highlightDetalhadoAtual(int linha, int coluna, int tamanho) | ||
{ | ||
|
||
} | ||
|
||
@Override | ||
public void simbolosAlterados(List<Simbolo> simbolos) | ||
{ | ||
|
||
} | ||
|
||
@Override | ||
public void simboloDeclarado(Simbolo simbolo) | ||
{ | ||
|
||
} | ||
|
||
@Override | ||
public void simboloRemovido(Simbolo simbolo) | ||
{ | ||
|
||
} | ||
} |