Questions tagged [diagram]

A diagram is a two-dimensional geometric symbolic representation of information according to some visualization technique.

1874 questions
0
votes
1 answer

Java UML diagrams and built-in classes

I'm in the process of designing a project which utilizes awt and swing package to create the user interface. Specifically ill be using the JFrame and JComponent as well as Graphics and Graphics2D. My questions are: Do I need to include the JFrame…
noobcoder
  • 323
  • 1
  • 3
  • 12
0
votes
1 answer

ER Diagram Entity that does not have to be a member of another entity

So I am trying to create an ER diagram. Although, I just ran into a problem. It states that "Assume each student is assigned to one academic advisor, but an advisor advises many students. advisors do not have to be faculty members." And I am…
0
votes
1 answer

ER diagram to relational schema

Could someone help me with ER diagram? I need to transform ER diagram in to relational schema. Maybe someone can do it with comments I could understand?
0
votes
1 answer

Visio: How to get the shapes that are contained in one shape?

I cannot get the information of the method SpartialNeighbors out of a "Package (expanded)" shape. Normally I use this code: Dim s As Shape, vsoShapeOnPage As Shape Dim vsoReturnedSelection As Visio.Selection 's contains the current shape Set…
Philipp Mochine
  • 4,351
  • 10
  • 36
  • 68
0
votes
1 answer

Expressing a Stack ADT with a Finite State Machine Diagram

I'm trying to use a finite state machine diagram to represent the Stack abstract data type, and I'm struggling to find a way to represent an unbounded alphabet. A stack can have an infinite number elements, but I can't draw infinite states in my…
0
votes
1 answer

1 to many relationship in OOP PHP in code?

This is the class diagram implemented, but what would a 1-to-many relationship look like in code? This is a text please stackoverflow accept my question class Customer { public $name; public $location; public function sendOrder(){ …
0
votes
1 answer

Need advice on choosing free angularjs charting library which also works offline

I need free angularjs library which provides various charts and works offline I have already found angular-chart which looks most used charting library, but cannot find any info if it works offline. 1) Does anyone know if i can use angular-chart…
caked bake
  • 327
  • 2
  • 6
  • 14
0
votes
1 answer

UML Activity Diagram for Calculating itinerary

I recently created a UML Activity diagram for a part of my app that calculates length and time for a selected road So the user will indicate his destination and the app will send his current location with destination to Directions API that will…
HanenO
  • 144
  • 2
  • 10
0
votes
1 answer

Interactive diagram in a website : What do I need to learn ? Which tools do I need to use?

Complete beginner. I want to make a website that provides 2D maps of an online game, in the form of interactive diagrams. Something that looks like this : https://i.stack.imgur.com/zIgvl.png Thanks to a secure authentication system, clicking on a…
Djysl
  • 3
  • 1
0
votes
1 answer

how to draw an automaton diagram?

I used graphviz based on the recommendation given to me by many people but I ran into a problem. I want to write a dot in ocaml using the Format.module and I have a record with five fields that define an automaton including the transitions which are…
user7450674
0
votes
1 answer

What kind of relationships are called n-ary relationships?

What kind of relationships are called n-ary relationships??
siddharth
  • 579
  • 1
  • 8
  • 18
0
votes
1 answer

UML use case diagram (extends)

Discussing about the extends used in use case diagram, i am wondering that if edit and delete order can extends to view order. Because when the customer view the order he/she can choose to edit or delete it or not to do anything with it
brendan
  • 3,062
  • 3
  • 12
  • 16
0
votes
2 answers

Class Diagrams - Attribute Inheritance

I need to inherit from a class and I only need to inherit selected attributes, is this possible or can you only inherit from classes if you need all of the attributes? Thanks, Chris.
Chris
  • 1
0
votes
1 answer

Extendable Diagram Tool

I need a Diagram Tool with ability to extend set of diagram types and diagram primitives and save them as templates for future use. User-scripted exports or export formats for my diagrams would be nice, too. For example, I want to make something…
topright gamedev
  • 2,617
  • 7
  • 35
  • 53
0
votes
2 answers

ERD Diagram - A lot of associations to one table

How does database design or ERD diagram modeling works in user managament systems where exists users table and exists a lot of other tables like, orders, products, customers, notes, comments, etc. Each of those other tables can have created_by…