Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project and Lab 04 #277

Merged
merged 20 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@ bin

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

Expand All @@ -38,3 +35,6 @@ build/

## Java .class files ##
*.class

## Node ##
node_modules
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
Ambiente de aprendizagem sobre o tema componentes de software.

# Navegando pelo Ambiente

* [Navegando](navigate/)

Todos os exemplos no diretório `notebook` são preparados para o ambiente Jupyter.

# Acionando os Notebooks via Binder

* Última versão testada e estável:
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/santanche/component2learn/v1.1.5)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/santanche/component2learn/v1.1.6)

* Última versão disponível:
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/santanche/component2learn/master)

# Componentes em Web e Java

* [Frameworks de Web Components](web/frameworks/)
* [Componentes em Java com Eclipse](java/)

# Disciplina de Componentização e Reúso de Software

* [Especificação de Laboratórios](labs/)
Expand Down
131 changes: 0 additions & 131 deletions componentverse/componentverse-lightning.ipynb

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

File renamed without changes.
11 changes: 11 additions & 0 deletions eclipse/.project → java/.project
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,15 @@
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1677079743467</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package pt.c08componentes.s01chartseq.s01push;

import pt.c08componentes.s01chartseq.s01push.chart.BarChart;

public class App0101BarChart {
public static void main(String args[]) {
BarChart bc1 = new BarChart(true, '#');
bc1.plot(10);
bc1.plot(12);
bc1.plot(8);
System.out.println();

BarChart bc2 = new BarChart(false, '*');
bc2.plot(4);
bc2.plot(5);
bc2.plot(7);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package pt.c08componentes.s01chartseq.s01push;

import pt.c08componentes.s01chartseq.s01push.chart.BarChart;
import pt.c08componentes.s01chartseq.s01push.sequence.GeometricProgressionPre;

public class App0102GeoChart {
public static void main(String args[]) {
BarChart bc = new BarChart(true, '#');

GeometricProgressionPre gp = new GeometricProgressionPre(1, 2, 7, bc);

gp.present();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package pt.c08componentes.s01chartseq.s01push;

import pt.c08componentes.s01chartseq.s01push.chart.BarChart;
import pt.c08componentes.s01chartseq.s01push.sequence.GeometricProgression;

public class App0103GeoChartConnect {
public static void main(String args[]) {
BarChart bc = new BarChart(true, '#');

GeometricProgression gp = new GeometricProgression(1, 2, 7);

gp.connect(bc);
gp.present();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package pt.c08componentes.s01chartseq.s01push;

import pt.c08componentes.s01chartseq.s01push.chart.BarChart;
import pt.c08componentes.s01chartseq.s01push.sequence.GeometricProgression;

public class App0104GeoChartMultiple {
public static void main(String args[]) {
BarChart bc1 = new BarChart(true, '#');
BarChart bc2 = new BarChart(false, '*');

GeometricProgression gp = new GeometricProgression(1, 2, 7);

gp.connect(bc1);
gp.present();

gp.connect(bc2);
gp.present();
}
}
Loading